Uses of Class
xtom.parser.Element

Packages that use Element
xtom.parser   
 

Uses of Element in xtom.parser
 

Fields in xtom.parser declared as Element
private  Element XMLTree.rootElement
          Root element of the XML document
private static Element Parser.current
           
private static Element Parser.previous
           
private static Element Parser.root
           
private  Element MultipleElementInstancesException.parentElement
           
private  Element Element.parent
          Parent element - used by the parser
 

Methods in xtom.parser that return Element
 Element XMLTree.getRootElement()
           
 Element MultipleElementInstancesException.getParentElement()
          Returns the Parent Element, which has multiple children.
protected  Element Element.getParentElement()
          Returns the parent Element.
 Element[] Element.getChildren()
           
 Element Element.getElementByPath(java.lang.String path)
          This method gets the element according to the path specidied.
 Element[] Element.getElementsByPath(java.lang.String path)
          This method gets all instances of specified element according to the path specidied.
protected  Element[] Element.getElements(java.lang.String path)
          This method is one the does the searching of the Element specified in the path.
private  Element[] Element.findChildElements(java.lang.String name)
          Searches the list of the children of this element to find the correct one specified by the name.
 

Methods in xtom.parser with parameters of type Element
private  void XMLTree.printAttributes(java.lang.StringBuffer xml, Element el)
          Prints attributes to the XMLBuffer for display.
private  void XMLTree.printChildren(java.lang.StringBuffer xml, Element el, int level)
          Prints children to the XML Buffer for display.
private  void XMLTree.generateXMLChildren(java.lang.StringBuffer xml, Element el)
          Generates XML markup for this element.
private  void XMLTree.generateXMLAttributes(java.lang.StringBuffer xml, Element el)
          Generates Attribute XML markup for this element.
protected  void Element.setParentElement(Element parent)
          Sets the parent for this element, only used by the parser
 void Element.addChildElement(Element e)
          adds a child element to this element.
 

Constructors in xtom.parser with parameters of type Element
XMLTree(Element root)
          Creates a new XMLTree
MultipleElementInstancesException(java.lang.String m, java.lang.String elementPath, Element parentElement)
          Creates a new exception, which is used to tell the developer that there are multiple elements of the same name that corresponed to that path.