comparison flys-backend/src/main/java/de/intevation/seddb/model/Hpeilpunkt.java @ 3334:2ae732e2c65c

FLYS backend: Removed trailing whitespace. flys-backend/trunk@4669 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 15 Jun 2012 09:20:49 +0000
parents aa8ed778c8cc
children 18619c1e7c2a
comparison
equal deleted inserted replaced
3333:76c75c8b9ee0 3334:2ae732e2c65c
35 this.id = id; 35 this.id = id;
36 this.hpeilung = hpeilung; 36 this.hpeilung = hpeilung;
37 this.y = y; 37 this.y = y;
38 this.z = z; 38 this.z = z;
39 } 39 }
40 40
41 @EmbeddedId 41 @EmbeddedId
42 42
43 43
44 @AttributeOverrides( { 44 @AttributeOverrides( {
45 @AttributeOverride(name="hpeilungid", column=@Column(name="HPEILUNGID", nullable=false, precision=11, scale=0) ), 45 @AttributeOverride(name="hpeilungid", column=@Column(name="HPEILUNGID", nullable=false, precision=11, scale=0) ),
46 @AttributeOverride(name="punktnr", column=@Column(name="PUNKTNR", nullable=false, precision=5, scale=0) ) } ) 46 @AttributeOverride(name="punktnr", column=@Column(name="PUNKTNR", nullable=false, precision=5, scale=0) ) } )
47 public HpeilpunktId getId() { 47 public HpeilpunktId getId() {
48 return this.id; 48 return this.id;
49 } 49 }
50 50
51 public void setId(HpeilpunktId id) { 51 public void setId(HpeilpunktId id) {
52 this.id = id; 52 this.id = id;
53 } 53 }
54 54
55 @ManyToOne(fetch=FetchType.LAZY) 55 @ManyToOne(fetch=FetchType.LAZY)
56 @JoinColumn(name="HPEILUNGID", nullable=false, insertable=false, updatable=false) 56 @JoinColumn(name="HPEILUNGID", nullable=false, insertable=false, updatable=false)
57 public Hpeilung getHpeilung() { 57 public Hpeilung getHpeilung() {
58 return this.hpeilung; 58 return this.hpeilung;
59 } 59 }
60 60
61 public void setHpeilung(Hpeilung hpeilung) { 61 public void setHpeilung(Hpeilung hpeilung) {
62 this.hpeilung = hpeilung; 62 this.hpeilung = hpeilung;
63 } 63 }
64 64
65 65
66 @Column(name="Y", nullable=false, precision=8, scale=3) 66 @Column(name="Y", nullable=false, precision=8, scale=3)
67 public BigDecimal getY() { 67 public BigDecimal getY() {
68 return this.y; 68 return this.y;
69 } 69 }
70 70
71 public void setY(BigDecimal y) { 71 public void setY(BigDecimal y) {
72 this.y = y; 72 this.y = y;
73 } 73 }
74 74
75 75
76 @Column(name="Z", nullable=false, precision=8, scale=3) 76 @Column(name="Z", nullable=false, precision=8, scale=3)
77 public BigDecimal getZ() { 77 public BigDecimal getZ() {
78 return this.z; 78 return this.z;
79 } 79 }
80 80
81 public void setZ(BigDecimal z) { 81 public void setZ(BigDecimal z) {
82 this.z = z; 82 this.z = z;
83 } 83 }
84 } 84 }

http://dive4elements.wald.intevation.org