Uses of Class
Common.myXML.myXMLException

Packages that use myXML.myXMLException
Common   
 

Uses of myXML.myXMLException in Common
 

Methods in Common that throw myXML.myXMLException
 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" ...
 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
 

Constructors in Common that throw myXML.myXMLException
myXML(java.io.BufferedReader in)
          Read the XML tree in from the specified stream.