comparison flys-backend/src/main/java/de/intevation/seddb/model/Gprobe.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
49 this.gtrieb = gtrieb; 49 this.gtrieb = gtrieb;
50 this.faktor = faktor; 50 this.faktor = faktor;
51 this.mengeF = mengeF; 51 this.mengeF = mengeF;
52 this.gtriebF = gtriebF; 52 this.gtriebF = gtriebF;
53 } 53 }
54 54
55 @EmbeddedId 55 @EmbeddedId
56 56
57 57
58 @AttributeOverrides( { 58 @AttributeOverrides( {
59 @AttributeOverride(name="glotrechteid", column=@Column(name="GLOTRECHTEID", nullable=false, precision=11, scale=0) ), 59 @AttributeOverride(name="glotrechteid", column=@Column(name="GLOTRECHTEID", nullable=false, precision=11, scale=0) ),
60 @AttributeOverride(name="lfdnr", column=@Column(name="LFDNR", nullable=false, precision=5, scale=0) ) } ) 60 @AttributeOverride(name="lfdnr", column=@Column(name="LFDNR", nullable=false, precision=5, scale=0) ) } )
61 public GprobeId getId() { 61 public GprobeId getId() {
62 return this.id; 62 return this.id;
63 } 63 }
64 64
65 public void setId(GprobeId id) { 65 public void setId(GprobeId id) {
66 this.id = id; 66 this.id = id;
67 } 67 }
68 68
69 @ManyToOne(fetch=FetchType.LAZY) 69 @ManyToOne(fetch=FetchType.LAZY)
70 @JoinColumn(name="GLOTRECHTEID", nullable=false, insertable=false, updatable=false) 70 @JoinColumn(name="GLOTRECHTEID", nullable=false, insertable=false, updatable=false)
71 public Glotrechte getGlotrechte() { 71 public Glotrechte getGlotrechte() {
72 return this.glotrechte; 72 return this.glotrechte;
73 } 73 }
74 74
75 public void setGlotrechte(Glotrechte glotrechte) { 75 public void setGlotrechte(Glotrechte glotrechte) {
76 this.glotrechte = glotrechte; 76 this.glotrechte = glotrechte;
77 } 77 }
78 78
79 79
80 @Column(name="MESSDAUER", nullable=false, precision=5, scale=0) 80 @Column(name="MESSDAUER", nullable=false, precision=5, scale=0)
81 public int getMessdauer() { 81 public int getMessdauer() {
82 return this.messdauer; 82 return this.messdauer;
83 } 83 }
84 84
85 public void setMessdauer(int messdauer) { 85 public void setMessdauer(int messdauer) {
86 this.messdauer = messdauer; 86 this.messdauer = messdauer;
87 } 87 }
88 88
89 89
90 @Column(name="MENGE", nullable=false, precision=9, scale=3) 90 @Column(name="MENGE", nullable=false, precision=9, scale=3)
91 public BigDecimal getMenge() { 91 public BigDecimal getMenge() {
92 return this.menge; 92 return this.menge;
93 } 93 }
94 94
95 public void setMenge(BigDecimal menge) { 95 public void setMenge(BigDecimal menge) {
96 this.menge = menge; 96 this.menge = menge;
97 } 97 }
98 98
99 99
100 @Column(name="GTRIEB", precision=8, scale=3) 100 @Column(name="GTRIEB", precision=8, scale=3)
101 public BigDecimal getGtrieb() { 101 public BigDecimal getGtrieb() {
102 return this.gtrieb; 102 return this.gtrieb;
103 } 103 }
104 104
105 public void setGtrieb(BigDecimal gtrieb) { 105 public void setGtrieb(BigDecimal gtrieb) {
106 this.gtrieb = gtrieb; 106 this.gtrieb = gtrieb;
107 } 107 }
108 108
109 109
110 @Column(name="FAKTOR", precision=4, scale=3) 110 @Column(name="FAKTOR", precision=4, scale=3)
111 public BigDecimal getFaktor() { 111 public BigDecimal getFaktor() {
112 return this.faktor; 112 return this.faktor;
113 } 113 }
114 114
115 public void setFaktor(BigDecimal faktor) { 115 public void setFaktor(BigDecimal faktor) {
116 this.faktor = faktor; 116 this.faktor = faktor;
117 } 117 }
118 118
119 119
120 @Column(name="MENGE_F", precision=9, scale=3) 120 @Column(name="MENGE_F", precision=9, scale=3)
121 public BigDecimal getMengeF() { 121 public BigDecimal getMengeF() {
122 return this.mengeF; 122 return this.mengeF;
123 } 123 }
124 124
125 public void setMengeF(BigDecimal mengeF) { 125 public void setMengeF(BigDecimal mengeF) {
126 this.mengeF = mengeF; 126 this.mengeF = mengeF;
127 } 127 }
128 128
129 129
130 @Column(name="GTRIEB_F", precision=8, scale=3) 130 @Column(name="GTRIEB_F", precision=8, scale=3)
131 public BigDecimal getGtriebF() { 131 public BigDecimal getGtriebF() {
132 return this.gtriebF; 132 return this.gtriebF;
133 } 133 }
134 134
135 public void setGtriebF(BigDecimal gtriebF) { 135 public void setGtriebF(BigDecimal gtriebF) {
136 this.gtriebF = gtriebF; 136 this.gtriebF = gtriebF;
137 } 137 }
138 } 138 }

http://dive4elements.wald.intevation.org