JXTA

Uses of Class
net.jxta.impl.document.LiteXMLElement

Packages that use LiteXMLElement
net.jxta.impl.document   
 

Uses of LiteXMLElement in net.jxta.impl.document
 

Subclasses of LiteXMLElement in net.jxta.impl.document
 class LiteXMLDocument
          This class is an implementation of the StructuredDocument interface using a simplified XML implementation.
 

Fields in net.jxta.impl.document declared as LiteXMLElement
protected  LiteXMLElement LiteXMLElement.parent
          Identifies the element which is the parent of this element.
 

Methods in net.jxta.impl.document that return LiteXMLElement
protected  LiteXMLElement LiteXMLDocument.createElement(LiteXMLElement.tagRange loc)
          Create a new text element as a sub-range of this document.
 LiteXMLElement LiteXMLDocument.createElement(Object key)
          Create a new element without value.
 LiteXMLElement LiteXMLDocument.createElement(Object key, Object val)
          Create a new element with value.
 LiteXMLElement LiteXMLDocument.createElement(String name)
          Create a new element without value.
 LiteXMLElement LiteXMLDocument.createElement(String name, String val)
          Create a new element with value.
 LiteXMLElement LiteXMLElement.getParent()
          Get the parent element of this element.
 

Methods in net.jxta.impl.document that return types with arguments of type LiteXMLElement
 Enumeration<LiteXMLElement> LiteXMLElement.getChildren()
          Returns an enumeration of the immediate children of this element.
 Enumeration<LiteXMLElement> LiteXMLElement.getChildren(Object key)
          Returns an enumeration of the immediate children of this element whose name match the specified string.
 Enumeration<LiteXMLElement> LiteXMLElement.getChildren(String name)
          Returns an enumeration of the immediate children of this element whose name match the specified string.
 

Methods in net.jxta.impl.document with parameters of type LiteXMLElement
protected  void LiteXMLElement.addChildTags(LiteXMLElement.charRange scanRange, LiteXMLElement addTo)
          Parse a charRange and add any tags found as content as children of a specified element.
 void LiteXMLElement.appendChild(LiteXMLElement element)
          Add a child element to this element.
 


JXSE