Menu

[r3057]: / trunk / ch.sahits.codegen.test / fragments / headless_test / Taz5.java  Maximize  Restore  History

Download this file

419 lines (391 with data), 11.6 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
package ch.sahits;
/**
* This class represents the database table
* /HOME/ANDI/CODEGENJAVA/CH.SAHITS.CODEGEN.TEST/FRAGMENTS/TESTHEADER4PARSING.CSV.
*/
public class Taz {
/** <code>abrkrs</code> holds the value of the field AbrKrs */
private String abrkrs;
/** <code>persnr</code> holds the value of the field PersNr */
private String persnr;
/** <code>nachname</code> holds the value of the field Nachname */
private String nachname;
/** <code>vorname</code> holds the value of the field Vorname */
private String vorname;
/** <code>nat</code> holds the value of the field Nat */
private String nat;
/** <code>gpartner</code> holds the value of the field GPartner */
private String gpartner;
/** <code>fakKanton</code> holds the value of the field FAK_Kanton */
private String fakKanton;
/** <code>svNummer</code> holds the value of the field SV_Nummer */
private String svNummer;
/** <code>natKind</code> holds the value of the field Nat_Kind */
private String natKind;
/** <code>gsch</code> holds the value of the field Gsch */
private String gsch;
/** <code>vornameKind</code> holds the value of the field Vorname_Kind */
private String vornameKind;
/** <code>nachnameKind</code> holds the value of the field Nachname_Kind */
private String nachnameKind;
/** <code>kindstatus</code> holds the value of the field Kindstatus */
private String kindstatus;
/** <code>ausbildung</code> holds the value of the field Ausbildung */
private String ausbildung;
/** <code>aufentStaat</code> holds the value of the field Aufent_Staat */
private String aufentStaat;
/** <code>berFak</code> holds the value of the field Ber_FAK */
private String berFak;
/** <code>gpnr</code> holds the value of the field GPNR */
private String gpnr;
/** <code>persidKind</code> holds the value of the field PersID_Kind */
private String persidKind;
/** <code>austritt</code> holds the value of the field Austritt */
private String austritt;
/** <code>gebdatBez</code> holds the value of the field GebDat_Bez */
private String gebdatBez;
/** <code>gueltigAb</code> holds the value of the field Gueltig_ab */
private String gueltigAb;
/** <code>gueltigBis</code> holds the value of the field Gueltig_bis */
private String gueltigBis;
/** <code>gebDatKind</code> holds the value of the field Geb_Dat_Kind */
private String gebDatKind;
/** <code>betrag</code> holds the value of the field Betrag */
private String betrag;
/**
* Retrieve the value of the field AbrKrs.
* @return the value of the field
*/
public String getAbrkrs(){
return abrkrs;
}
/**
* Set the value of the field AbrKrs.
* @param abrkrs value to be set for AbrKrs
*/
public void setAbrkrs(String abrkrs){
this.abrkrs = abrkrs;
}
/**
* Retrieve the value of the field PersNr.
* @return the value of the field
*/
public String getPersnr(){
return persnr;
}
/**
* Set the value of the field PersNr.
* @param persnr value to be set for PersNr
*/
public void setPersnr(String persnr){
this.persnr = persnr;
}
/**
* Retrieve the value of the field Nachname.
* @return the value of the field
*/
public String getNachname(){
return nachname;
}
/**
* Set the value of the field Nachname.
* @param nachname value to be set for Nachname
*/
public void setNachname(String nachname){
this.nachname = nachname;
}
/**
* Retrieve the value of the field Vorname.
* @return the value of the field
*/
public String getVorname(){
return vorname;
}
/**
* Set the value of the field Vorname.
* @param vorname value to be set for Vorname
*/
public void setVorname(String vorname){
this.vorname = vorname;
}
/**
* Retrieve the value of the field Nat.
* @return the value of the field
*/
public String getNat(){
return nat;
}
/**
* Set the value of the field Nat.
* @param nat value to be set for Nat
*/
public void setNat(String nat){
this.nat = nat;
}
/**
* Retrieve the value of the field GPartner.
* @return the value of the field
*/
public String getGpartner(){
return gpartner;
}
/**
* Set the value of the field GPartner.
* @param gpartner value to be set for GPartner
*/
public void setGpartner(String gpartner){
this.gpartner = gpartner;
}
/**
* Retrieve the value of the field FAK_Kanton.
* @return the value of the field
*/
public String getFakKanton(){
return fakKanton;
}
/**
* Set the value of the field FAK_Kanton.
* @param fakKanton value to be set for FAK_Kanton
*/
public void setFakKanton(String fakKanton){
this.fakKanton = fakKanton;
}
/**
* Retrieve the value of the field SV_Nummer.
* @return the value of the field
*/
public String getSvNummer(){
return svNummer;
}
/**
* Set the value of the field SV_Nummer.
* @param svNummer value to be set for SV_Nummer
*/
public void setSvNummer(String svNummer){
this.svNummer = svNummer;
}
/**
* Retrieve the value of the field Nat_Kind.
* @return the value of the field
*/
public String getNatKind(){
return natKind;
}
/**
* Set the value of the field Nat_Kind.
* @param natKind value to be set for Nat_Kind
*/
public void setNatKind(String natKind){
this.natKind = natKind;
}
/**
* Retrieve the value of the field Gsch.
* @return the value of the field
*/
public String getGsch(){
return gsch;
}
/**
* Set the value of the field Gsch.
* @param gsch value to be set for Gsch
*/
public void setGsch(String gsch){
this.gsch = gsch;
}
/**
* Retrieve the value of the field Vorname_Kind.
* @return the value of the field
*/
public String getVornameKind(){
return vornameKind;
}
/**
* Set the value of the field Vorname_Kind.
* @param vornameKind value to be set for Vorname_Kind
*/
public void setVornameKind(String vornameKind){
this.vornameKind = vornameKind;
}
/**
* Retrieve the value of the field Nachname_Kind.
* @return the value of the field
*/
public String getNachnameKind(){
return nachnameKind;
}
/**
* Set the value of the field Nachname_Kind.
* @param nachnameKind value to be set for Nachname_Kind
*/
public void setNachnameKind(String nachnameKind){
this.nachnameKind = nachnameKind;
}
/**
* Retrieve the value of the field Kindstatus.
* @return the value of the field
*/
public String getKindstatus(){
return kindstatus;
}
/**
* Set the value of the field Kindstatus.
* @param kindstatus value to be set for Kindstatus
*/
public void setKindstatus(String kindstatus){
this.kindstatus = kindstatus;
}
/**
* Retrieve the value of the field Ausbildung.
* @return the value of the field
*/
public String getAusbildung(){
return ausbildung;
}
/**
* Set the value of the field Ausbildung.
* @param ausbildung value to be set for Ausbildung
*/
public void setAusbildung(String ausbildung){
this.ausbildung = ausbildung;
}
/**
* Retrieve the value of the field Aufent_Staat.
* @return the value of the field
*/
public String getAufentStaat(){
return aufentStaat;
}
/**
* Set the value of the field Aufent_Staat.
* @param aufentStaat value to be set for Aufent_Staat
*/
public void setAufentStaat(String aufentStaat){
this.aufentStaat = aufentStaat;
}
/**
* Retrieve the value of the field Ber_FAK.
* @return the value of the field
*/
public String getBerFak(){
return berFak;
}
/**
* Set the value of the field Ber_FAK.
* @param berFak value to be set for Ber_FAK
*/
public void setBerFak(String berFak){
this.berFak = berFak;
}
/**
* Retrieve the value of the field GPNR.
* @return the value of the field
*/
public String getGpnr(){
return gpnr;
}
/**
* Set the value of the field GPNR.
* @param gpnr value to be set for GPNR
*/
public void setGpnr(String gpnr){
this.gpnr = gpnr;
}
/**
* Retrieve the value of the field PersID_Kind.
* @return the value of the field
*/
public String getPersidKind(){
return persidKind;
}
/**
* Set the value of the field PersID_Kind.
* @param persidKind value to be set for PersID_Kind
*/
public void setPersidKind(String persidKind){
this.persidKind = persidKind;
}
/**
* Retrieve the value of the field Austritt.
* @return the value of the field
*/
public String getAustritt(){
return austritt;
}
/**
* Set the value of the field Austritt.
* @param austritt value to be set for Austritt
*/
public void setAustritt(String austritt){
this.austritt = austritt;
}
/**
* Retrieve the value of the field GebDat_Bez.
* @return the value of the field
*/
public String getGebdatBez(){
return gebdatBez;
}
/**
* Set the value of the field GebDat_Bez.
* @param gebdatBez value to be set for GebDat_Bez
*/
public void setGebdatBez(String gebdatBez){
this.gebdatBez = gebdatBez;
}
/**
* Retrieve the value of the field Gueltig_ab.
* @return the value of the field
*/
public String getGueltigAb(){
return gueltigAb;
}
/**
* Set the value of the field Gueltig_ab.
* @param gueltigAb value to be set for Gueltig_ab
*/
public void setGueltigAb(String gueltigAb){
this.gueltigAb = gueltigAb;
}
/**
* Retrieve the value of the field Gueltig_bis.
* @return the value of the field
*/
public String getGueltigBis(){
return gueltigBis;
}
/**
* Set the value of the field Gueltig_bis.
* @param gueltigBis value to be set for Gueltig_bis
*/
public void setGueltigBis(String gueltigBis){
this.gueltigBis = gueltigBis;
}
/**
* Retrieve the value of the field Geb_Dat_Kind.
* @return the value of the field
*/
public String getGebDatKind(){
return gebDatKind;
}
/**
* Set the value of the field Geb_Dat_Kind.
* @param gebDatKind value to be set for Geb_Dat_Kind
*/
public void setGebDatKind(String gebDatKind){
this.gebDatKind = gebDatKind;
}
/**
* Retrieve the value of the field Betrag.
* @return the value of the field
*/
public String getBetrag(){
return betrag;
}
/**
* Set the value of the field Betrag.
* @param betrag value to be set for Betrag
*/
public void setBetrag(String betrag){
this.betrag = betrag;
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.