public interface IlvUserPropertyHolder
IlvUserPropertyHolder
defines the behavior of a data model
entity that supports user-defined properties.Modifier and Type | Method and Description |
---|---|
Object |
getProperty(String property)
Returns the value of a user-defined property or
null if
the property does not exist. |
boolean |
isUserProperty(String property)
Returns
true if the property is a user-defined property. |
Iterator<String> |
propertyNameIterator()
Returns an iterator over all the property names of the object.
|
Object |
setProperty(String property,
Object value)
Stores a user-defined property in the object's property table, with its
value.
|
Object getProperty(String property)
null
if
the property does not exist.property
- The name of the property.null
if the property
does not exist.setProperty(java.lang.String, java.lang.Object)
Object setProperty(String property, Object value)
property
- The name of the property.value
- The value of the property. If the value is null
then the property is removed.getProperty(java.lang.String)
Iterator<String> propertyNameIterator()
boolean isUserProperty(String property)
true
if the property is a user-defined property.property
- The name of the property.true
if the property is a user-defined property,
false
otherwise.© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.