comparison flys-backend/src/main/java/de/intevation/flys/model/CrossSectionPoint.java @ 1204:22858e7cca79

Integrated PRF parsing into importer. Needs testing! flys-backend/trunk@2309 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 07 Jul 2011 22:25:38 +0000
parents 3c01bef43a98
children 2f874d14ac68
comparison
equal deleted inserted replaced
1203:3c01bef43a98 1204:22858e7cca79
24 private Integer colPos; 24 private Integer colPos;
25 private BigDecimal x; 25 private BigDecimal x;
26 private BigDecimal y; 26 private BigDecimal y;
27 27
28 public CrossSectionPoint() { 28 public CrossSectionPoint() {
29 }
30
31 public CrossSectionPoint(
32 CrossSectionLine crossSectionLine,
33 Integer colPos,
34 BigDecimal x,
35 BigDecimal y
36 ) {
37 this.crossSectionLine = crossSectionLine;
38 this.colPos = colPos;
39 this.x = x;
40 this.y = y;
29 } 41 }
30 42
31 @Id 43 @Id
32 @SequenceGenerator( 44 @SequenceGenerator(
33 name = "SEQUENCE_CROSS_SECTION_POINTS_ID_SEQ", 45 name = "SEQUENCE_CROSS_SECTION_POINTS_ID_SEQ",

http://dive4elements.wald.intevation.org