comparison flys-backend/src/main/java/de/intevation/seddb/model/Sprobe.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
34 private BigDecimal schwebtrieb; 34 private BigDecimal schwebtrieb;
35 35
36 public Sprobe() { 36 public Sprobe() {
37 } 37 }
38 38
39 39
40 public Sprobe(SprobeId id, Slotrechte slotrechte, short wprozpkt, BigDecimal wpkt, BigDecimal vpkt, BigDecimal csandpkt, BigDecimal cschwebpkt) { 40 public Sprobe(SprobeId id, Slotrechte slotrechte, short wprozpkt, BigDecimal wpkt, BigDecimal vpkt, BigDecimal csandpkt, BigDecimal cschwebpkt) {
41 this.id = id; 41 this.id = id;
42 this.slotrechte = slotrechte; 42 this.slotrechte = slotrechte;
43 this.wprozpkt = wprozpkt; 43 this.wprozpkt = wprozpkt;
44 this.wpkt = wpkt; 44 this.wpkt = wpkt;
55 this.csandpkt = csandpkt; 55 this.csandpkt = csandpkt;
56 this.cschwebpkt = cschwebpkt; 56 this.cschwebpkt = cschwebpkt;
57 this.sandtrieb = sandtrieb; 57 this.sandtrieb = sandtrieb;
58 this.schwebtrieb = schwebtrieb; 58 this.schwebtrieb = schwebtrieb;
59 } 59 }
60 60
61 @EmbeddedId 61 @EmbeddedId
62 62
63 63
64 @AttributeOverrides( { 64 @AttributeOverrides( {
65 @AttributeOverride(name="slotrechteid", column=@Column(name="SLOTRECHTEID", nullable=false, precision=11, scale=0) ), 65 @AttributeOverride(name="slotrechteid", column=@Column(name="SLOTRECHTEID", nullable=false, precision=11, scale=0) ),
66 @AttributeOverride(name="lfdnr", column=@Column(name="LFDNR", nullable=false, precision=5, scale=0) ) } ) 66 @AttributeOverride(name="lfdnr", column=@Column(name="LFDNR", nullable=false, precision=5, scale=0) ) } )
67 public SprobeId getId() { 67 public SprobeId getId() {
68 return this.id; 68 return this.id;
69 } 69 }
70 70
71 public void setId(SprobeId id) { 71 public void setId(SprobeId id) {
72 this.id = id; 72 this.id = id;
73 } 73 }
74 74
75 @ManyToOne(fetch=FetchType.LAZY) 75 @ManyToOne(fetch=FetchType.LAZY)
76 @JoinColumn(name="SLOTRECHTEID", nullable=false, insertable=false, updatable=false) 76 @JoinColumn(name="SLOTRECHTEID", nullable=false, insertable=false, updatable=false)
77 public Slotrechte getSlotrechte() { 77 public Slotrechte getSlotrechte() {
78 return this.slotrechte; 78 return this.slotrechte;
79 } 79 }
80 80
81 public void setSlotrechte(Slotrechte slotrechte) { 81 public void setSlotrechte(Slotrechte slotrechte) {
82 this.slotrechte = slotrechte; 82 this.slotrechte = slotrechte;
83 } 83 }
84 84
85 85
86 @Column(name="WPROZPKT", nullable=false, precision=3, scale=0) 86 @Column(name="WPROZPKT", nullable=false, precision=3, scale=0)
87 public short getWprozpkt() { 87 public short getWprozpkt() {
88 return this.wprozpkt; 88 return this.wprozpkt;
89 } 89 }
90 90
91 public void setWprozpkt(short wprozpkt) { 91 public void setWprozpkt(short wprozpkt) {
92 this.wprozpkt = wprozpkt; 92 this.wprozpkt = wprozpkt;
93 } 93 }
94 94
95 95
96 @Column(name="WPKT", nullable=false, precision=8, scale=3) 96 @Column(name="WPKT", nullable=false, precision=8, scale=3)
97 public BigDecimal getWpkt() { 97 public BigDecimal getWpkt() {
98 return this.wpkt; 98 return this.wpkt;
99 } 99 }
100 100
101 public void setWpkt(BigDecimal wpkt) { 101 public void setWpkt(BigDecimal wpkt) {
102 this.wpkt = wpkt; 102 this.wpkt = wpkt;
103 } 103 }
104 104
105 105
106 @Column(name="VPKT", nullable=false, precision=6, scale=4) 106 @Column(name="VPKT", nullable=false, precision=6, scale=4)
107 public BigDecimal getVpkt() { 107 public BigDecimal getVpkt() {
108 return this.vpkt; 108 return this.vpkt;
109 } 109 }
110 110
111 public void setVpkt(BigDecimal vpkt) { 111 public void setVpkt(BigDecimal vpkt) {
112 this.vpkt = vpkt; 112 this.vpkt = vpkt;
113 } 113 }
114 114
115 115
116 @Column(name="CSANDPKT", nullable=false, precision=8, scale=3) 116 @Column(name="CSANDPKT", nullable=false, precision=8, scale=3)
117 public BigDecimal getCsandpkt() { 117 public BigDecimal getCsandpkt() {
118 return this.csandpkt; 118 return this.csandpkt;
119 } 119 }
120 120
121 public void setCsandpkt(BigDecimal csandpkt) { 121 public void setCsandpkt(BigDecimal csandpkt) {
122 this.csandpkt = csandpkt; 122 this.csandpkt = csandpkt;
123 } 123 }
124 124
125 125
126 @Column(name="CSCHWEBPKT", nullable=false, precision=8, scale=3) 126 @Column(name="CSCHWEBPKT", nullable=false, precision=8, scale=3)
127 public BigDecimal getCschwebpkt() { 127 public BigDecimal getCschwebpkt() {
128 return this.cschwebpkt; 128 return this.cschwebpkt;
129 } 129 }
130 130
131 public void setCschwebpkt(BigDecimal cschwebpkt) { 131 public void setCschwebpkt(BigDecimal cschwebpkt) {
132 this.cschwebpkt = cschwebpkt; 132 this.cschwebpkt = cschwebpkt;
133 } 133 }
134 134
135 135
136 @Column(name="SANDTRIEB", precision=8, scale=3) 136 @Column(name="SANDTRIEB", precision=8, scale=3)
137 public BigDecimal getSandtrieb() { 137 public BigDecimal getSandtrieb() {
138 return this.sandtrieb; 138 return this.sandtrieb;
139 } 139 }
140 140
141 public void setSandtrieb(BigDecimal sandtrieb) { 141 public void setSandtrieb(BigDecimal sandtrieb) {
142 this.sandtrieb = sandtrieb; 142 this.sandtrieb = sandtrieb;
143 } 143 }
144 144
145 145
146 @Column(name="SCHWEBTRIEB", precision=8, scale=3) 146 @Column(name="SCHWEBTRIEB", precision=8, scale=3)
147 public BigDecimal getSchwebtrieb() { 147 public BigDecimal getSchwebtrieb() {
148 return this.schwebtrieb; 148 return this.schwebtrieb;
149 } 149 }
150 150
151 public void setSchwebtrieb(BigDecimal schwebtrieb) { 151 public void setSchwebtrieb(BigDecimal schwebtrieb) {
152 this.schwebtrieb = schwebtrieb; 152 this.schwebtrieb = schwebtrieb;
153 } 153 }
154 } 154 }

http://dive4elements.wald.intevation.org