Uses of Interface
org.w3c.dom.Element

Packages that use Element
gnu.xml.dom This is a Free Software DOM Level 2 implementation, supporting these features: "XML", "Events", "MutationEvents", "HTMLEvents" (won't generate them though), "UIEvents" (also won't generate them), "USER-Events" (a conformant extension), and "Traversal" (optional; no TreeWalker yet). 
org.w3c.dom Contains the core and "XML" feature set of the DOM Level 2 Recommendation. 
 

Uses of Element in gnu.xml.dom
 

Classes in gnu.xml.dom that implement Element
 class DomElement
           "Element" implementation.
 

Methods in gnu.xml.dom that return Element
 Element DomAttr.getOwnerElement()
          DOM L2 Returns the element with which this attribute is associated.
 Element DomDocument.getDocumentElement()
          DOM L1 Returns the document's root element, or null.
 Element DomDocument.getElementById(java.lang.String id)
          DOM L1 (relocated in DOM L2) Returns the element with the specified "ID" attribute, or null.
 Element DomDocument.createElement(java.lang.String name)
          DOM L1 Returns a newly created element with the specified name.
 Element DomDocument.createElementNS(java.lang.String namespaceURI, java.lang.String name)
          DOM L2 Returns a newly created element with the specified name and namespace information.
 

Methods in gnu.xml.dom with parameters of type Element
 void DomAttr.setOwnerElement(Element e)
          Records the element with which this attribute is associated.
 

Uses of Element in org.w3c.dom
 

Methods in org.w3c.dom that return Element
 Element Attr.getOwnerElement()
          The Element node this attribute is attached to or null if this attribute is not in use.
 Element Document.getDocumentElement()
          This is a convenience attribute that allows direct access to the child node that is the root element of the document.
 Element Document.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 Element Document.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Element Document.getElementById(java.lang.String elementId)
          Returns the Element whose ID is given by elementId.
 



Source code is under GPL (with library exception) in the JAXP project at http://www.gnu.org/software/classpathx/jaxp
This documentation was derived from that source code on 2001-11-20.