Uses of Interface
org.w3c.dom.Element
Package | Description |
---|---|
javax.imageio.metadata |
A package of the Java Image I/O API dealing with reading and writing
metadata.
|
javax.xml.crypto.dom |
DOM-specific classes for the
javax.xml.crypto package. |
org.w3c.dom |
Provides the interfaces for the Document Object Model (DOM).
|
org.w3c.dom.ls |
Provides interfaces for DOM Level 3 Load and Save.
|
-
Uses of Element in javax.imageio.metadata
Classes in javax.imageio.metadata that implement Element Modifier and Type Class Description class
IIOMetadataNode
A class representing a node in a meta-data tree, which implements theorg.w3c.dom.Element
interface and additionally allows for the storage of non-textual objects via thegetUserObject
andsetUserObject
methods. -
Uses of Element in javax.xml.crypto.dom
Methods in javax.xml.crypto.dom that return Element Modifier and Type Method Description Element
DOMCryptoContext. getElementById(String idValue)
Returns theElement
with the specified ID attribute value.Methods in javax.xml.crypto.dom that return types with arguments of type Element Modifier and Type Method Description Iterator<Map.Entry<String,Element>>
DOMCryptoContext. iterator()
Returns a read-only iterator over the set of Id/Element mappings of thisDOMCryptoContext
.Methods in javax.xml.crypto.dom with parameters of type Element Modifier and Type Method Description void
DOMCryptoContext. setIdAttributeNS(Element element, String namespaceURI, String localName)
Registers the element's attribute specified by the namespace URI and local name to be of type ID. -
Uses of Element in org.w3c.dom
Methods in org.w3c.dom that return Element Modifier and Type Method Description Element
Document. createElement(String tagName)
Creates an element of the type specified.Element
Document. createElementNS(String namespaceURI, String qualifiedName)
Creates an element of the given qualified name and namespace URI.Element
Document. getDocumentElement()
This is a convenience attribute that allows direct access to the child node that is the document element of the document.Element
Document. getElementById(String elementId)
Returns theElement
that has an ID attribute with the given value.Element
ElementTraversal. getFirstElementChild()
Returns a reference to the first child node of the element which is of theElement
type.Element
ElementTraversal. getLastElementChild()
Returns a reference to the last child node of the element which is of theElement
type.Element
ElementTraversal. getNextElementSibling()
Returns a reference to the sibling node of the element which most immediately follows the element in document order, and which is of theElement
type.Element
Attr. getOwnerElement()
TheElement
node this attribute is attached to ornull
if this attribute is not in use.Element
ElementTraversal. getPreviousElementSibling()
Returns a reference to the sibling node of the element which most immediately precedes the element in document order, and which is of theElement
type. -
Uses of Element in org.w3c.dom.ls
Methods in org.w3c.dom.ls with parameters of type Element Modifier and Type Method Description short
LSParserFilter. startElement(Element elementArg)
The parser will call this method after eachElement
start tag has been scanned, but before the remainder of theElement
is processed.