Package com.cmobilecom.af.entity.attr
Interface EntityAttrValueSupport
-
- All Superinterfaces:
java.lang.Cloneable
,PersistenceEntity
public interface EntityAttrValueSupport extends PersistenceEntity
EntityAttrValueSupport: an entity can create a number of EntityAttrValues(attributes with their values).- Since:
- 5.4
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PROPERTY_ENTITY_ATTR_VALUES
Property name: entityAttrValues-
Fields inherited from interface com.cmobilecom.af.entity.PersistenceEntity
ID_SEPARATOR, PROPERTY_ID, PROPERTY_INSTANCE, PROPERTY_SELECTED, PROPERTY_SEQUENCE_NO, PROPERTY_VERSION
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<EntityAttrValue>
getEntityAttrValues()
Get a list of EntityAttrValue(s) that are the user-defined property valuesvoid
setEntityAttrValues(java.util.List<EntityAttrValue> entityAttrValues)
Set the list of EntityAttrValue(s) that are the user-defined property values-
Methods inherited from interface com.cmobilecom.af.entity.PersistenceEntity
clone, getId, getInstance, getSequenceNo, getVersion, isChanged, isPartiallyInitialized, isPersisted, isSelected, isStatistics, setChanged, setId, setInstance, setPartiallyInitialized, setPersisted, setSelected, setSequenceNo, setStatistics, setVersion
-
-
-
-
Field Detail
-
PROPERTY_ENTITY_ATTR_VALUES
static final java.lang.String PROPERTY_ENTITY_ATTR_VALUES
Property name: entityAttrValues- See Also:
- Constant Field Values
-
-
Method Detail
-
getEntityAttrValues
java.util.List<EntityAttrValue> getEntityAttrValues()
Get a list of EntityAttrValue(s) that are the user-defined property values
-
setEntityAttrValues
void setEntityAttrValues(java.util.List<EntityAttrValue> entityAttrValues)
Set the list of EntityAttrValue(s) that are the user-defined property values- Parameters:
entityAttrValues
- the value to set
-
-