public interface IPropertyObject
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getProperty(java.lang.String name)
Returns a property.
|
java.util.Set |
getPropertyNames()
Returns all of the properties.
|
boolean |
hasProperty(java.lang.String name)
Tests if the given property name exists
If an property is
null it exists |
void |
setProperty(java.lang.String name,
java.lang.Object value)
Sets a property
|
java.lang.Object getProperty(java.lang.String name)
name
- name of the propertyjava.util.Set getPropertyNames()
void setProperty(java.lang.String name, java.lang.Object value)
name
- name of the propertyvalue
- value of the propertyboolean hasProperty(java.lang.String name)
null
it existsname
- the name of the property to testtrue
if and only if the property exists