Add an attribute with the given name. The value's toString() method
will be used to convert the value to a String.
Parameters: name - The attribute name Parameters: value - The attribute value
Add a child node with no child value to the configuration. This
method should be the same as calling
addChild(name, null) Parameters: name - The name of the new configuration node The configuration node
Add a child node to the configuration. The value's toString() method
will be used to convert the value to a String.
Parameters: name - The name of the new configuration node Parameters: value - The value of the new configuration node The configuration node
Add a child node to the configuration. The value's toString() method
will be used to convert the value to a String. If the value is null use the
default value. [patch from Jakub]
Parameters: name - The name of the new configuration node Parameters: value - The value of the new configuration node Parameters: defaultValue - value to use if the value was null The configuration node
Save the configuration data to the specified output stream. Not all
implementations will support writing configuration data.
Parameters: out - The OutputStream throws: ConfigurationException -
Save the configuration data to the specified output stream. Not all
implementations will support writing configuration data.
Parameters: out - The Writer throws: ConfigurationException -