| java.lang.Object org.mandarax.kernel.AbstractPropertiesSupport
All known Subclasses: org.mandarax.rdf.RDFClauseSet, org.mandarax.reference.QueryImpl, org.mandarax.kernel.AbstractClause, org.mandarax.sql.SQLClauseSet, org.mandarax.kernel.meta.AbstractClauseSet, org.mandarax.util.AutoFacts,
getProperties | public Properties getProperties()(Code) | | Get the properties as one "properties" instance.
a properties instance |
getProperty | public String getProperty(String key)(Code) | | Get a property.
Parameters: key - the property key the respective value. The method returns null if the property is not found. |
propertyNames | public Enumeration propertyNames()(Code) | | Returns an enumeration of all the keys in this property list, including distinct
keys in the default property list if a key of the same name has not already been
found from the main properties list.
an enumeration of all the keys in this property list, including the keys in the default property list |
removeProperty | public Object removeProperty(String key)(Code) | | Remove a property.
Parameters: key - the property key the value to which the key had been mapped, or null if the key did not have a mapping. |
setProperties | public void setProperties(Properties properties)(Code) | | Set the properties. Not required by the interface, but useful for bean (introspection-) based
tools.
Parameters: properties - the properties |
setProperty | public Object setProperty(String key, String value)(Code) | | Set a property.
Parameters: key - the key Parameters: value - the value the previous value of the specified key in this property list, or null if it did not have one. |
|
|