Menu

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

Download this file

79 lines (71 with data), 1.8 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
package ch.sahits;
/**
* This class represents the database table
* CDS.
*/
public class Taz {
/** <code>titel</code> holds the value of the field titel */
private String titel;
/** <code>interpret</code> holds the value of the field interpret */
private String interpret;
/** <code>jahr</code> holds the value of the field jahr */
private int jahr;
/** <code>id</code> holds the value of the field id */
private long id;
/**
* Retrieve the value of the field titel.
* @return the value of the field
*/
public String getTitel(){
return titel;
}
/**
* Set the value of the field titel.
* @param titel value to be set for titel
*/
public void setTitel(String titel){
this.titel = titel;
}
/**
* Retrieve the value of the field interpret.
* @return the value of the field
*/
public String getInterpret(){
return interpret;
}
/**
* Set the value of the field interpret.
* @param interpret value to be set for interpret
*/
public void setInterpret(String interpret){
this.interpret = interpret;
}
/**
* Retrieve the value of the field jahr.
* @return the value of the field
*/
public int getJahr(){
return jahr;
}
/**
* Set the value of the field jahr.
* @param jahr value to be set for jahr
*/
public void setJahr(int jahr){
this.jahr = jahr;
}
/**
* Retrieve the value of the field id.
* @return the value of the field
*/
public long getId(){
return id;
}
/**
* Set the value of the field id.
* @param id value to be set for id
*/
public void setId(long id){
this.id = id;
}
}
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.