|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Element | |
com.sun.xml.tree | This package supports in-memory XML documents in the form of a parse tree compliant with the W3C DOM Level 1 Core Recommendation, with extensions including support for XML Namespaces as defined by the current XML proposed recommendation. |
org.w3c.dom | The Document Object Model (DOM) is a Recommendation of the World Wide Web Consortium, defining programming interfaces for XML (and, optionally, HTML) documents. |
Uses of Element in com.sun.xml.tree |
Subinterfaces of Element in com.sun.xml.tree | |
interface |
ElementEx
This extends the DOM Element interface with features including XML namespace support. |
Classes in com.sun.xml.tree that implement Element | |
class |
ElementNode
This class represents XML elements in a parse tree, and is often subclassed to add custom behaviors. |
Methods in com.sun.xml.tree that return Element | |
Element |
XmlDocument.getDocumentElement()
DOM: Returns the content root element. |
Element |
XmlDocument.createElement(java.lang.String tagName)
DOM: Create a new element, associated with this document, with no children, attributes, or parent, by calling createElementEx. |
Element |
TreeWalker.getNextElement(java.lang.String tag)
Convenience method to walk only through elements with the specified tag name. |
Uses of Element in org.w3c.dom |
Methods in org.w3c.dom that return Element | |
Element |
Document.getDocumentElement()
Returns the value of the documentElement property. |
Element |
Document.createElement(java.lang.String tagName)
Creates an element of the type specified. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |