Represents a XML element node which contain one or more element nodes in it.
All XML element nodes which only text node are represented as properties of
the enclosing node. For e.g : The following XML fragment
<elem>
<child>
Harry
</child>
<elem>
would be represented by a ConfigElement named "elem" having a property
"child" whose value is "Harry".
author: Sun Microsystems Inc.
Gets the config element associated with property name.
Parameters: propertyName - element's property name. associated property value as a ConfigElement instance. throws: IllegalArgumentException - - if the property does not exist.
Gets the element list associated with property name. This method is not
currently supported.
Parameters: propertyName - element's property name. associated ConfigElement instance list.
Gets the associated property value.
Parameters: propertyName - elements' property name. associated property value as a String. throws: IllegalArgumentException - - if the property does not exist.
Gets the associated property value list. This method is not currently
supported.
Parameters: propertyName - element's property name. associated property value list.