com.opensymphony.module.propertyset.hibernate
Interface PropertySetItem
- All Known Implementing Classes:
- PropertySetItemImpl
- public interface PropertySetItem
Interface to be implemented by the concrete class that hibernate persists.
- Version:
- $Revision: 1.3 $
- Author:
- $author$
setBooleanVal
public void setBooleanVal(boolean booleanVal)
getBooleanVal
public boolean getBooleanVal()
setDateVal
public void setDateVal(java.util.Date dateVal)
getDateVal
public java.util.Date getDateVal()
setDoubleVal
public void setDoubleVal(double doubleVal)
getDoubleVal
public double getDoubleVal()
setEntityId
public void setEntityId(long entityId)
getEntityId
public long getEntityId()
setEntityName
public void setEntityName(java.lang.String entityName)
getEntityName
public java.lang.String getEntityName()
setIntVal
public void setIntVal(int intVal)
getIntVal
public int getIntVal()
setKey
public void setKey(java.lang.String key)
getKey
public java.lang.String getKey()
setLongVal
public void setLongVal(long longVal)
getLongVal
public long getLongVal()
setStringVal
public void setStringVal(java.lang.String stringVal)
getStringVal
public java.lang.String getStringVal()
setType
public void setType(int type)
getType
public int getType()
|