Uses of Class
Common.myXML

Packages that use myXML
Common   
 

Uses of myXML in Common
 

Methods in Common that return myXML
 myXML myXML.addElement(java.lang.String tag)
          Add a subelement which will be used as a branch in the XML tree to the this element of the form:

<tag attr1="attr1value attr2="attr2value" ...
 myXML myXML.addElement(java.lang.String tag, java.lang.Object value)
          Add a leaf element to the XML tree of the form:

<tag attr1="attr1value attr2="attr2value" ...
 myXML myXML.findattribute(java.lang.String name)
          Find and retrieve the first element that has the specified attribute name.
 myXML myXML.findElement(java.lang.String tag)
          Find and retrieve the first element that has the specified tag name The search starts with this object and follows all branch and leaf nodes in the XML tree.
 myXML myXML.findElement(java.lang.String tag, java.lang.String attname)
          Find and retrieve the first element that has the specified tag name and the specified attribute name.
 myXML myXML.getElement(int index)
          Retrieve the element object at the specified index.
 

Methods in Common with parameters of type myXML
 boolean myXML.contains(myXML element)
          Tests if the specified element is a subelement of this element
 boolean myXML.removeElement(myXML element)
          Remove subelement (element) from list of objects for a parent element