void |
DefaultConfiguration.addAll(Configuration other,
boolean deepCopy) |
Add all the attributes, children and value
from specified configuration element to current
configuration element.
|
void |
DefaultConfiguration.addAllChildren(Configuration other,
boolean deepCopy) |
Add all child Configuration objects from specified
configuration element to current configuration element.
|
Configuration |
DefaultConfigurationBuilder.build(java.io.InputStream inputStream) |
Build a configuration object using an InputStream.
|
Configuration |
DefaultConfigurationBuilder.build(java.io.InputStream inputStream,
java.lang.String systemId) |
Build a configuration object using an InputStream;
supplying a systemId to make messages about all
kinds of errors more meaningfull.
|
Configuration |
DefaultConfigurationBuilder.build(java.lang.String uri) |
Build a configuration object using an URI
|
Configuration |
DefaultConfigurationBuilder.build(org.xml.sax.InputSource input) |
Build a configuration object using an XML InputSource object
|
Configuration |
DefaultConfigurationBuilder.buildFromFile(java.io.File file) |
Build a configuration object from a file using a File object.
|
Configuration |
DefaultConfigurationBuilder.buildFromFile(java.lang.String filename) |
Build a configuration object from a file using a filename.
|
void |
Configurable.configure(Configuration configuration) |
Pass the Configuration to the Configurable
class.
|
java.lang.String |
Configuration.getAttribute(java.lang.String paramName) |
Return the value of specified attribute.
|
java.lang.String |
DefaultConfiguration.getAttribute(java.lang.String name) |
Returns the value of the attribute specified by its name as a
String .
|
java.lang.String |
DefaultImmutableConfiguration.getAttribute(java.lang.String name) |
Returns the value of the attribute specified by its name as a
String .
|
boolean |
AbstractConfiguration.getAttributeAsBoolean(java.lang.String name) |
Returns the value of the attribute specified by its name as a
boolean .
|
boolean |
Configuration.getAttributeAsBoolean(java.lang.String paramName) |
Return the boolean value of the specified parameter contained
in this node.
|
double |
AbstractConfiguration.getAttributeAsDouble(java.lang.String name) |
Returns the value of the attribute specified by its name as a
double .
|
double |
Configuration.getAttributeAsDouble(java.lang.String paramName) |
Return the double value of the specified parameter contained
in this node.
|
float |
AbstractConfiguration.getAttributeAsFloat(java.lang.String name) |
Returns the value of the attribute specified by its name as a
float .
|
float |
Configuration.getAttributeAsFloat(java.lang.String paramName) |
Return the float value of the specified parameter contained
in this node.
|
int |
AbstractConfiguration.getAttributeAsInteger(java.lang.String name) |
Returns the value of the attribute specified by its name as an
int .
|
int |
Configuration.getAttributeAsInteger(java.lang.String paramName) |
Return the int value of the specified attribute contained
in this node.
|
long |
AbstractConfiguration.getAttributeAsLong(java.lang.String name) |
Returns the value of the attribute specified by its name as a
long .
|
long |
Configuration.getAttributeAsLong(java.lang.String name) |
Returns the value of the attribute specified by its name as a
long .
|
MutableConfiguration |
DefaultConfiguration.getMutableChild(java.lang.String name) |
|
MutableConfiguration |
DefaultConfiguration.getMutableChild(java.lang.String name,
boolean autoCreate) |
|
MutableConfiguration |
MutableConfiguration.getMutableChild(java.lang.String name) |
Equivalent to getMutableChild( name, true )
|
MutableConfiguration |
MutableConfiguration.getMutableChild(java.lang.String name,
boolean autoCreate) |
Gets a child node of this configuration.
|
MutableConfiguration[] |
DefaultConfiguration.getMutableChildren() |
|
MutableConfiguration[] |
DefaultConfiguration.getMutableChildren(java.lang.String name) |
|
MutableConfiguration[] |
MutableConfiguration.getMutableChildren() |
Returns an array of mutable children.
|
MutableConfiguration[] |
MutableConfiguration.getMutableChildren(java.lang.String name) |
Returns an array of mutable children with the given name.
|
java.lang.String |
Configuration.getNamespace() |
Returns a string indicating which namespace this Configuration node
belongs to.
|
java.lang.String |
DefaultConfiguration.getNamespace() |
Returns the namespace of this configuration element
|
java.lang.String |
DefaultImmutableConfiguration.getNamespace() |
Returns the namespace of this configuration element
|
protected abstract java.lang.String |
AbstractConfiguration.getPrefix() |
Returns the prefix of the namespace.
|
protected java.lang.String |
DefaultConfiguration.getPrefix() |
Returns the prefix of the namespace
|
protected java.lang.String |
DefaultImmutableConfiguration.getPrefix() |
Returns the prefix of the namespace
|
java.lang.String |
Configuration.getValue() |
Return the String value of the node.
|
java.lang.String |
DefaultConfiguration.getValue() |
Returns the value of the configuration element as a String .
|
java.lang.String |
DefaultImmutableConfiguration.getValue() |
Returns the value of the configuration element as a String .
|
boolean |
AbstractConfiguration.getValueAsBoolean() |
Returns the value of the configuration element as a boolean .
|
boolean |
Configuration.getValueAsBoolean() |
Return the boolean value of the node.
|
double |
AbstractConfiguration.getValueAsDouble() |
Returns the value of the configuration element as a double .
|
double |
Configuration.getValueAsDouble() |
Return the double value of the node.
|
float |
AbstractConfiguration.getValueAsFloat() |
Returns the value of the configuration element as a float .
|
float |
Configuration.getValueAsFloat() |
Return the float value of the node.
|
int |
AbstractConfiguration.getValueAsInteger() |
Returns the value of the configuration element as an int .
|
int |
Configuration.getValueAsInteger() |
Return the int value of the node.
|
long |
AbstractConfiguration.getValueAsLong() |
Returns the value of the configuration element as a long .
|
long |
Configuration.getValueAsLong() |
Return the long value of the node.
|
void |
Reconfigurable.reconfigure(Configuration configuration) |
Describe reconfigure method here.
|
void |
DefaultConfigurationSerializer.serialize(java.io.OutputStream outputStream,
Configuration source) |
Serialize the configuration object to an output stream.
|
void |
DefaultConfigurationSerializer.serialize(java.lang.String uri,
Configuration source) |
Serialize the configuration object to an output stream derived from an
URI.
|
java.lang.String |
DefaultConfigurationSerializer.serialize(Configuration source) |
Serialize the configuration object to a string
|
void |
DefaultConfigurationSerializer.serialize(org.xml.sax.ContentHandler handler,
Configuration source) |
Serialize the configuration to a ContentHandler
|
protected void |
DefaultConfigurationSerializer.serializeElement(org.xml.sax.ContentHandler handler,
org.xml.sax.helpers.NamespaceSupport namespaceSupport,
Configuration element) |
Serialize each Configuration element.
|
void |
DefaultConfigurationSerializer.serializeToFile(java.io.File file,
Configuration source) |
Serialize the configuration object to a file using a File object.
|
void |
DefaultConfigurationSerializer.serializeToFile(java.lang.String filename,
Configuration source) |
Serialize the configuration object to a file using a filename.
|
private MutableConfiguration |
DefaultConfiguration.toMutable(Configuration child) |
Convenience function to convert a child to a mutable configuration.
|