ParameterOptionsIf.java from Negest at Krugle
Show ParameterOptionsIf.java syntax highlighted
package tk.sabreWulf.negest.entity.reports;
import tk.sabreWulf.negest.entity.reports.*;
/**
* The ParameterOptionsIf 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 ParameterOptionsIf {
/**
* 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>idparameter</code> (foreign key) property.
*
* @return the value of the <code>idparameter</code> property.
*/
java.lang.Long getIdparameter();
/**
* Sets the value of the <code>idparameter</code> (foreign key) property.
*
* @param idparameter a value for <code>idparameter</code>.
*/
void setIdparameter(java.lang.Long idparameter);
/**
* 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>optionvalue</code> property.
*
* @return the value of the <code>optionvalue</code> property
*/
java.lang.String getOptionvalue();
/**
* Sets the value of the <code>optionvalue</code> property.
*
* @param optionvalue the value for the <code>optionvalue</code> property
*/
void setOptionvalue(java.lang.String optionvalue);
/**
* Returns the value of the <code>idparameterParameter</code> relation property.
*
* @return the value of the <code>idparameterParameter</code> relation property.
*/
ParameterIf getIdParameter();
/**
* Sets the value of the <code>idparameterParameter</code> relation property.
*
* @param parameter a value for <code>idparameterParameter</code>.
*/
void setIdParameter(ParameterIf parameter);
}
See more files for this project here