public interface PropertyValueHandler
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getValue(Property property,
java.lang.Object valueContainer)
Gets the value of a property from a value container.
|
boolean |
getValueIsRemovable(Property property,
java.lang.Object valueContainer)
Returns true if the property value is removable from the value container.
|
boolean |
getValueIsSet(Property property,
java.lang.Object valueContainer)
Returns true if a value for the property is set in the value container.
|
void |
removeValue(Property property,
java.lang.Object valueContainer)
Removes a property value from a value container.
|
void |
setValue(Property property,
java.lang.Object valueContainer,
java.lang.Object value)
Sets the value of a property in a value container.
|
java.lang.Object getValue(Property property, java.lang.Object valueContainer)
property
- the propertyvalueContainer
- the object containing the valuevoid setValue(Property property, java.lang.Object valueContainer, java.lang.Object value)
property
- the propertyvalueContainer
- the object that will contain the valuevalue
- the property valuevoid removeValue(Property property, java.lang.Object valueContainer)
property
- the propertyvalueContainer
- the value containerboolean getValueIsSet(Property property, java.lang.Object valueContainer)
property
- the propertyvalueContainer
- the value containerboolean getValueIsRemovable(Property property, java.lang.Object valueContainer)
property
- the propertyvalueContainer
- the value container