JXTA

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

Packages that use DOMXMLElement
net.jxta.impl.document   
 

Uses of DOMXMLElement in net.jxta.impl.document
 

Subclasses of DOMXMLElement in net.jxta.impl.document
 class DOMXMLDocument
          This class is an implementation of the StructuredDocument interface using DOM
 

Methods in net.jxta.impl.document that return DOMXMLElement
 DOMXMLElement DOMXMLDocument.createElement(Object key)
          Create a new element without value.
 DOMXMLElement DOMXMLDocument.createElement(Object key, Object val)
          Create a new element with value.
 DOMXMLElement DOMXMLDocument.createElement(String name)
          Create a new element without value.
 DOMXMLElement DOMXMLDocument.createElement(String name, String value)
          Create a new element with value.
 DOMXMLElement DOMXMLElement.getParent()
          Get the parent of this element.
 

Methods in net.jxta.impl.document that return types with arguments of type DOMXMLElement
 Enumeration<DOMXMLElement> DOMXMLElement.getChildren()
          Returns an enumeration of the immediate children of this element
 Enumeration<DOMXMLElement> DOMXMLElement.getChildren(Object key)
          Returns an enumeration of the immediate children of this element whose name match the specified string.
 Enumeration<DOMXMLElement> DOMXMLElement.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 DOMXMLElement
 void DOMXMLElement.appendChild(DOMXMLElement element)
          Add a child element to this element
 


JXSE