Uses of Class
net.charlesames.utility.entity.XmlElement

Packages that use XmlElement
net.charlesames.utility.entity   
 

Uses of XmlElement in net.charlesames.utility.entity
 

Subclasses of XmlElement in net.charlesames.utility.entity
 class XmlChoice
          An XmlChoice instance is a component of an XmlSpec that offers a choice between XmlComplexElement instances.
 class XmlComplexElement
          An XmlComplexElement instance is a component of an XmlSpec that maps object properties, object references, and child objects to XML child elements.
 class XmlExtensionElement
          Deprecated.  
 class XmlSimpleElement
          An XmlSimpleElement instance is a component of an XmlSpec that maps object properties, object references, and child objects to XML child elements.
 

Methods in net.charlesames.utility.entity that return XmlElement
 XmlElement XmlSpec.getElement(java.lang.String tag)
          Get the XmlElement instance with the indicated Tag.
 

Methods in net.charlesames.utility.entity that return types with arguments of type XmlElement
 java.util.List<XmlElement> XmlSpec.getElements()
          Get all elements.
 java.util.SortedMap<java.lang.String,XmlElement> XmlSpec.getElementsByTag()
          Get all elements in Tag order.
 

Methods in net.charlesames.utility.entity with parameters of type XmlElement
 void XmlSpec.addElement(XmlElement element)
          Add a new XmlElement instance to the specification.