ReportTypeVersionIf.java from Negest at Krugle
Show ReportTypeVersionIf.java syntax highlighted
package tk.sabreWulf.negest.entity.reports;
import tk.sabreWulf.negest.entity.reports.*;
/**
* The ReportTypeVersionIf interfaces exposes the persistence data.
*
* @author Jose Manuel Molina Pascual Sabre Wulf
* @version $Revision: 1.4 $, $Date: 2005/06/29 20:56:26 $
*/
public interface ReportTypeVersionIf {
/**
* Return the primary key.
*
* @return java.lang.Long he primary key.
*/
java.lang.Long getPrimaryKey();
/**
* Set the primary key.
*
* @param pk return java.lang.Long with the primary key.
*/
void setPrimaryKey(java.lang.Long pk);
/**
* Returns the value of the <code>idreporttype</code> (foreign key) property.
*
* @return the value of the <code>idreporttype</code> property.
*/
java.lang.Long getIdreporttype();
/**
* Sets the value of the <code>idreporttype</code> (foreign key) property.
*
* @param idreporttype a value for <code>idreporttype</code>.
*/
void setIdreporttype(java.lang.Long idreporttype);
/**
* Returns the value of the <code>id</code> property.
*
* @return the value of the <code>id</code> property
*/
java.lang.Long getId();
/**
* Sets the value of the <code>id</code> property.
*
* @param id the value for the <code>id</code> property
*/
void setId(java.lang.Long id);
/**
* Returns the value of the <code>creationdate</code> property.
*
* @return the value of the <code>creationdate</code> property
*/
java.sql.Timestamp getCreationdate();
/**
* Sets the value of the <code>creationdate</code> property.
*
* @param creationdate the value for the <code>creationdate</code> property
*/
void setCreationdate(java.sql.Timestamp creationdate);
/**
* Returns the value of the <code>title</code> property.
*
* @return the value of the <code>title</code> property
*/
java.lang.String getTitle();
/**
* Sets the value of the <code>title</code> property.
*
* @param title the value for the <code>title</code> property
*/
void setTitle(java.lang.String title);
/**
* Returns the value of the <code>extratext</code> property.
*
* @return the value of the <code>extratext</code> property
*/
java.lang.String getExtratext();
/**
* Sets the value of the <code>extratext</code> property.
*
* @param extratext the value for the <code>extratext</code> property
*/
void setExtratext(java.lang.String extratext);
/**
* Returns the value of the <code>reporttemplatefilename</code> property.
*
* @return the value of the <code>reporttemplatefilename</code> property
*/
java.lang.String getReporttemplatefilename();
/**
* Sets the value of the <code>reporttemplatefilename</code> property.
*
* @param reporttemplatefilename the value for the <code>reporttemplatefilename</code> property
*/
void setReporttemplatefilename(java.lang.String reporttemplatefilename);
/**
* Returns the value of the <code>idreporttypeReporttype</code> relation property.
*
* @return the value of the <code>idreporttypeReporttype</code> relation property.
*/
ReportTypeIf getIdReporttype();
/**
* Sets the value of the <code>idreporttypeReporttype</code> relation property.
*
* @param reporttype a value for <code>idreporttypeReporttype</code>.
*/
void setIdReportType(ReportTypeIf reporttype);
}
See more files for this project here