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;
}
}