Method Summary |
|
public void | addAll(ConfigurationHelper other) Add all the attributes, children and value from specified configuration
element to current configuration element. |
public void | addAllAttributes(ConfigurationHelper other) Add all attributes from specified configuration element to current
configuration element. |
public void | addAllChildren(ConfigurationHelper other) Add all child Configuration objects from specified
configuration element to current configuration element. |
public void | addAllChildrenBefore(ConfigurationHelper other) Add all child Configuration objects from specified
configuration element to current configuration element. |
public void | addChild(ConfigurationHelper configuration) Add a child Configuration to this configuration element. |
final protected void | checkWriteable() heck if this configuration is writeable. |
public boolean | equals(Object other) Compare if this configuration is equal to another. |
public String | getAttribute(String name) Returns the value of the attribute specified by its name as a
String . |
public String[] | getAttributeNames() Return an array of all attribute names. |
public ConfigurationHelper | getChild(String name, boolean createNew) Return the first Configuration object child of this
associated with the given name. |
public int | getChildCount() Return count of children. |
public ConfigurationHelper[] | getChildren() Return an array of Configuration elements containing all
node children. |
public ConfigurationHelper[] | getChildren(String name) Return an array of Configuration objects children of this
associated with the given name. |
public String | getLocation() Returns a description of location of element. |
public String | getName() Returns the name of this configuration element. |
public String | getNamespace() |
protected String | getPrefix() |
public String | getValue(String defaultValue) Returns the value of the configuration element as a String . |
public String | getValue() Returns the value of the configuration element as a String . |
public int | hashCode() Obtaine the hashcode for this configuration. |
final protected boolean | isReadOnly() Returns true iff this DefaultConfiguration has been made read-only. |
public void | makeReadOnly() Make this configuration read-only. |
public void | removeChild(ConfigurationHelper configuration) Remove a child Configuration to this configuration
element. |
public void | setAttribute(String name, String value) Set the value of the specified attribute to the specified string. |
public void | setAttribute(String name, int value) Set the value of the specified attribute to the specified int. |
public void | setAttribute(String name, long value) Set the value of the specified attribute to the specified long. |
public void | setAttribute(String name, boolean value) Set the value of the specified attribute to the specified boolean. |
public void | setAttribute(String name, float value) Set the value of the specified attribute to the specified float. |
public void | setValue(String value) Set the value of this Configuration object to the
specified string. |
public void | setValue(int value) Set the value of this Configuration object to the
specified int. |
public void | setValue(long value) Set the value of this Configuration object to the
specified long. |
public void | setValue(boolean value) Set the value of this Configuration object to the
specified boolean. |
public void | setValue(float value) Set the value of this Configuration object to the
specified float. |