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