Menu

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

Download this file

66 lines (58 with data), 1.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
package ch.sahits;
import ch.sahits.codegen.example.Name;
import ch.sahits.codegen.example.Description;
import ch.sahits.codegen.example.Message;
/**
* This class represents the database table
* null.
*/
public class Taz {
/** <code>name</code> holds the value of the field name */
private Name name;
/** <code>description</code> holds the value of the field description */
private Description description;
/** <code>message</code> holds the value of the field message */
private Message message;
/**
* Retrieve the value of the field name.
* @return the value of the field
*/
public Name getName(){
return name;
}
/**
* Set the value of the field name.
* @param name value to be set for name
*/
public void setName(Name name){
this.name = name;
}
/**
* Retrieve the value of the field description.
* @return the value of the field
*/
public Description getDescription(){
return description;
}
/**
* Set the value of the field description.
* @param description value to be set for description
*/
public void setDescription(Description description){
this.description = description;
}
/**
* Retrieve the value of the field message.
* @return the value of the field
*/
public Message getMessage(){
return message;
}
/**
* Set the value of the field message.
* @param message value to be set for message
*/
public void setMessage(Message message){
this.message = message;
}
}
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.