comparison flys-backend/src/main/java/de/intevation/seddb/model/Probebild.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
57 this.bemerkung = bemerkung; 57 this.bemerkung = bemerkung;
58 this.typklein = typklein; 58 this.typklein = typklein;
59 this.typmittel = typmittel; 59 this.typmittel = typmittel;
60 this.typgross = typgross; 60 this.typgross = typgross;
61 } 61 }
62
63 @Id
64 62
65 63 @Id
64
65
66 @Column(name="PROBEBILDID", unique=true, nullable=false, precision=11, scale=0) 66 @Column(name="PROBEBILDID", unique=true, nullable=false, precision=11, scale=0)
67 public long getProbebildid() { 67 public long getProbebildid() {
68 return this.probebildid; 68 return this.probebildid;
69 } 69 }
70 70
71 public void setProbebildid(long probebildid) { 71 public void setProbebildid(long probebildid) {
72 this.probebildid = probebildid; 72 this.probebildid = probebildid;
73 } 73 }
74 74
75 @ManyToOne(fetch=FetchType.LAZY) 75 @ManyToOne(fetch=FetchType.LAZY)
76 @JoinColumn(name="THEMAID", nullable=false) 76 @JoinColumn(name="THEMAID", nullable=false)
77 public Zzthema getZzthema() { 77 public Zzthema getZzthema() {
78 return this.zzthema; 78 return this.zzthema;
79 } 79 }
80 80
81 public void setZzthema(Zzthema zzthema) { 81 public void setZzthema(Zzthema zzthema) {
82 this.zzthema = zzthema; 82 this.zzthema = zzthema;
83 } 83 }
84 84
85 @ManyToOne(fetch=FetchType.LAZY) 85 @ManyToOne(fetch=FetchType.LAZY)
86 @JoinColumn(name="SOHLPROBEID", nullable=false) 86 @JoinColumn(name="SOHLPROBEID", nullable=false)
87 public Sohlprobe getSohlprobe() { 87 public Sohlprobe getSohlprobe() {
88 return this.sohlprobe; 88 return this.sohlprobe;
89 } 89 }
90 90
91 public void setSohlprobe(Sohlprobe sohlprobe) { 91 public void setSohlprobe(Sohlprobe sohlprobe) {
92 this.sohlprobe = sohlprobe; 92 this.sohlprobe = sohlprobe;
93 } 93 }
94 94
95 95
96 @Column(name="LFDNR", nullable=false, precision=5, scale=0) 96 @Column(name="LFDNR", nullable=false, precision=5, scale=0)
97 public int getLfdnr() { 97 public int getLfdnr() {
98 return this.lfdnr; 98 return this.lfdnr;
99 } 99 }
100 100
101 public void setLfdnr(int lfdnr) { 101 public void setLfdnr(int lfdnr) {
102 this.lfdnr = lfdnr; 102 this.lfdnr = lfdnr;
103 } 103 }
104 104
105 105
106 @Column(name="ISTDIGITAL", nullable=false, precision=1, scale=0) 106 @Column(name="ISTDIGITAL", nullable=false, precision=1, scale=0)
107 public boolean isIstdigital() { 107 public boolean isIstdigital() {
108 return this.istdigital; 108 return this.istdigital;
109 } 109 }
110 110
111 public void setIstdigital(boolean istdigital) { 111 public void setIstdigital(boolean istdigital) {
112 this.istdigital = istdigital; 112 this.istdigital = istdigital;
113 } 113 }
114 114
115 115
116 @Column(name="PFAD", length=512) 116 @Column(name="PFAD", length=512)
117 public String getPfad() { 117 public String getPfad() {
118 return this.pfad; 118 return this.pfad;
119 } 119 }
120 120
121 public void setPfad(String pfad) { 121 public void setPfad(String pfad) {
122 this.pfad = pfad; 122 this.pfad = pfad;
123 } 123 }
124 124
125 125
126 @Column(name="STANDORT", length=50) 126 @Column(name="STANDORT", length=50)
127 public String getStandort() { 127 public String getStandort() {
128 return this.standort; 128 return this.standort;
129 } 129 }
130 130
131 public void setStandort(String standort) { 131 public void setStandort(String standort) {
132 this.standort = standort; 132 this.standort = standort;
133 } 133 }
134 134
135 135
136 @Column(name="MEDIUM", length=50) 136 @Column(name="MEDIUM", length=50)
137 public String getMedium() { 137 public String getMedium() {
138 return this.medium; 138 return this.medium;
139 } 139 }
140 140
141 public void setMedium(String medium) { 141 public void setMedium(String medium) {
142 this.medium = medium; 142 this.medium = medium;
143 } 143 }
144 144
145 145
146 @Column(name="MEDPFAD", length=50) 146 @Column(name="MEDPFAD", length=50)
147 public String getMedpfad() { 147 public String getMedpfad() {
148 return this.medpfad; 148 return this.medpfad;
149 } 149 }
150 150
151 public void setMedpfad(String medpfad) { 151 public void setMedpfad(String medpfad) {
152 this.medpfad = medpfad; 152 this.medpfad = medpfad;
153 } 153 }
154 154
155 155
156 @Column(name="BEMERKUNG", length=240) 156 @Column(name="BEMERKUNG", length=240)
157 public String getBemerkung() { 157 public String getBemerkung() {
158 return this.bemerkung; 158 return this.bemerkung;
159 } 159 }
160 160
161 public void setBemerkung(String bemerkung) { 161 public void setBemerkung(String bemerkung) {
162 this.bemerkung = bemerkung; 162 this.bemerkung = bemerkung;
163 } 163 }
164 164
165 165
166 @Column(name="TYPKLEIN", length=8) 166 @Column(name="TYPKLEIN", length=8)
167 public String getTypklein() { 167 public String getTypklein() {
168 return this.typklein; 168 return this.typklein;
169 } 169 }
170 170
171 public void setTypklein(String typklein) { 171 public void setTypklein(String typklein) {
172 this.typklein = typklein; 172 this.typklein = typklein;
173 } 173 }
174 174
175 175
176 @Column(name="TYPMITTEL", length=8) 176 @Column(name="TYPMITTEL", length=8)
177 public String getTypmittel() { 177 public String getTypmittel() {
178 return this.typmittel; 178 return this.typmittel;
179 } 179 }
180 180
181 public void setTypmittel(String typmittel) { 181 public void setTypmittel(String typmittel) {
182 this.typmittel = typmittel; 182 this.typmittel = typmittel;
183 } 183 }
184 184
185 185
186 @Column(name="TYPGROSS", length=8) 186 @Column(name="TYPGROSS", length=8)
187 public String getTypgross() { 187 public String getTypgross() {
188 return this.typgross; 188 return this.typgross;
189 } 189 }
190 190
191 public void setTypgross(String typgross) { 191 public void setTypgross(String typgross) {
192 this.typgross = typgross; 192 this.typgross = typgross;
193 } 193 }
194 } 194 }

http://dive4elements.wald.intevation.org