public class ElementImpl extends DefaultElement
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE| Constructor and Description | 
|---|
| ElementImpl(int line,
           int column) | 
| ElementImpl(int line,
           int column,
           int offset) | 
| ElementImpl(java.lang.String prefix,
           java.lang.String localpart,
           java.lang.String rawname,
           java.lang.String uri,
           int line,
           int column) | 
| ElementImpl(java.lang.String prefix,
           java.lang.String localpart,
           java.lang.String rawname,
           java.lang.String uri,
           int line,
           int column,
           int offset) | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getAnnotation() | 
| java.lang.String | getAttribute(java.lang.String name)Retrieves an attribute value by name. | 
| org.w3c.dom.Attr | getAttributeNode(java.lang.String name)Retrieves an attribute node by name. | 
| org.w3c.dom.Attr | getAttributeNodeNS(java.lang.String namespaceURI,
                  java.lang.String localName)Retrieves an  Attrnode by local name and namespace URI. | 
| java.lang.String | getAttributeNS(java.lang.String namespaceURI,
              java.lang.String localName)Retrieves an attribute value by local name and namespace URI. | 
| org.w3c.dom.NamedNodeMap | getAttributes()A  NamedNodeMapcontaining the attributes of this node (if 
 it is anElement) ornullotherwise. | 
| int | getCharacterOffset()Returns the character offset. | 
| int | getColumnNumber()Returns the column number. | 
| org.w3c.dom.Node | getFirstChild()The first child of this node. | 
| org.w3c.dom.Node | getLastChild()The last child of this node. | 
| int | getLineNumber()Returns the line number. | 
| org.w3c.dom.Node | getNextSibling()The node immediately following this node. | 
| org.w3c.dom.Document | getOwnerDocument()The  Documentobject associated with this node. | 
| org.w3c.dom.Node | getParentNode()The parent of this node. | 
| org.w3c.dom.Node | getPreviousSibling()The node immediately preceding this node. | 
| java.lang.String | getSyntheticAnnotation() | 
| java.lang.String | getTagName()The name of the element. | 
| boolean | hasAttribute(java.lang.String name)Returns  truewhen an attribute with a given name is 
 specified on this element or has a default value,falseotherwise. | 
| boolean | hasAttributeNS(java.lang.String namespaceURI,
              java.lang.String localName)Returns  truewhen an attribute with a given local name and 
 namespace URI is specified on this element or has a default value,falseotherwise. | 
| boolean | hasAttributes()Returns whether this node (if it is an element) has any attributes. | 
| boolean | hasChildNodes()Returns whether this node has any children. | 
| void | setAttribute(java.lang.String name,
            java.lang.String value)Adds a new attribute. | 
getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, removeAttribute, removeAttributeNode, removeAttributeNS, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNSgetLocalName, getNamespaceURI, getNodeName, getNodeType, getPrefix, getReadOnly, setReadOnly, toStringappendChild, cloneNode, compareDocumentPosition, getBaseURI, getChildNodes, getFeature, getNodeValue, getTextContent, getUserData, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserDataclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitappendChild, cloneNode, compareDocumentPosition, getBaseURI, getChildNodes, getFeature, getLocalName, getNamespaceURI, getNodeName, getNodeType, getNodeValue, getPrefix, getTextContent, getUserData, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserDatapublic ElementImpl(int line,
           int column,
           int offset)
public ElementImpl(int line,
           int column)
public ElementImpl(java.lang.String prefix,
           java.lang.String localpart,
           java.lang.String rawname,
           java.lang.String uri,
           int line,
           int column,
           int offset)
public ElementImpl(java.lang.String prefix,
           java.lang.String localpart,
           java.lang.String rawname,
           java.lang.String uri,
           int line,
           int column)
public org.w3c.dom.Document getOwnerDocument()
org.w3c.dom.NodeDocument object associated with this node. This is 
 also the Document object used to create new nodes. When 
 this node is a Document or a DocumentType 
 which is not used with any Document yet, this is 
 null.getOwnerDocument in interface org.w3c.dom.NodegetOwnerDocument in class DefaultNodepublic org.w3c.dom.Node getParentNode()
org.w3c.dom.NodeAttr, 
 Document, DocumentFragment, 
 Entity, and Notation may have a parent. 
 However, if a node has just been created and not yet added to the 
 tree, or if it has been removed from the tree, this is 
 null.getParentNode in interface org.w3c.dom.NodegetParentNode in class DefaultNodepublic boolean hasChildNodes()
org.w3c.dom.NodehasChildNodes in interface org.w3c.dom.NodehasChildNodes in class DefaultNodetrue if this node has any children, 
   false otherwise.public org.w3c.dom.Node getFirstChild()
org.w3c.dom.Nodenull.getFirstChild in interface org.w3c.dom.NodegetFirstChild in class DefaultNodepublic org.w3c.dom.Node getLastChild()
org.w3c.dom.Nodenull.getLastChild in interface org.w3c.dom.NodegetLastChild in class DefaultNodepublic org.w3c.dom.Node getPreviousSibling()
org.w3c.dom.Nodenull.getPreviousSibling in interface org.w3c.dom.NodegetPreviousSibling in class DefaultNodepublic org.w3c.dom.Node getNextSibling()
org.w3c.dom.Nodenull.getNextSibling in interface org.w3c.dom.NodegetNextSibling in class DefaultNodepublic org.w3c.dom.NamedNodeMap getAttributes()
org.w3c.dom.NodeNamedNodeMap containing the attributes of this node (if 
 it is an Element) or null otherwise.getAttributes in interface org.w3c.dom.NodegetAttributes in class DefaultNodepublic boolean hasAttributes()
org.w3c.dom.NodehasAttributes in interface org.w3c.dom.NodehasAttributes in class DefaultNodetrue if this node has any attributes, 
   false otherwise.public java.lang.String getTagName()
org.w3c.dom.ElementNode.localName is different 
 from null, this attribute is a qualified name. For 
 example, in: 
 <elementExample id="demo"> ... </elementExample> ,
tagName has the value 
 "elementExample". Note that this is case-preserving in 
 XML, as are all of the operations of the DOM. The HTML DOM returns 
 the tagName of an HTML element in the canonical 
 uppercase form, regardless of the case in the source HTML document.getTagName in interface org.w3c.dom.ElementgetTagName in class DefaultElementpublic java.lang.String getAttribute(java.lang.String name)
org.w3c.dom.ElementgetAttribute in interface org.w3c.dom.ElementgetAttribute in class DefaultElementname - The name of the attribute to retrieve.Attr value as a string, or the empty string 
   if that attribute does not have a specified or default value.public org.w3c.dom.Attr getAttributeNode(java.lang.String name)
org.w3c.dom.ElementgetAttributeNodeNS method.getAttributeNode in interface org.w3c.dom.ElementgetAttributeNode in class DefaultElementname - The name (nodeName) of the attribute to 
   retrieve.Attr node with the specified name (
   nodeName) or null if there is no such 
   attribute.public java.lang.String getAttributeNS(java.lang.String namespaceURI,
                              java.lang.String localName)
org.w3c.dom.Elementnull as the 
 namespaceURI parameter for methods if they wish to have 
 no namespace.getAttributeNS in interface org.w3c.dom.ElementgetAttributeNS in class DefaultElementnamespaceURI - The namespace URI of the attribute to retrieve.localName - The local name of the attribute to retrieve.Attr value as a string, or the empty string 
   if that attribute does not have a specified or default value.public org.w3c.dom.Attr getAttributeNodeNS(java.lang.String namespaceURI,
                                  java.lang.String localName)
org.w3c.dom.ElementAttr node by local name and namespace URI.
 null as the 
 namespaceURI parameter for methods if they wish to have 
 no namespace.getAttributeNodeNS in interface org.w3c.dom.ElementgetAttributeNodeNS in class DefaultElementnamespaceURI - The namespace URI of the attribute to retrieve.localName - The local name of the attribute to retrieve.Attr node with the specified attribute local 
   name and namespace URI or null if there is no such 
   attribute.public boolean hasAttribute(java.lang.String name)
org.w3c.dom.Elementtrue when an attribute with a given name is 
 specified on this element or has a default value, false 
 otherwise.hasAttribute in interface org.w3c.dom.ElementhasAttribute in class DefaultElementname - The name of the attribute to look for.true if an attribute with the given name is 
   specified on this element or has a default value, false
    otherwise.public boolean hasAttributeNS(java.lang.String namespaceURI,
                     java.lang.String localName)
org.w3c.dom.Elementtrue when an attribute with a given local name and 
 namespace URI is specified on this element or has a default value, 
 false otherwise.
 null as the 
 namespaceURI parameter for methods if they wish to have 
 no namespace.hasAttributeNS in interface org.w3c.dom.ElementhasAttributeNS in class DefaultElementnamespaceURI - The namespace URI of the attribute to look for.localName - The local name of the attribute to look for.true if an attribute with the given local name 
   and namespace URI is specified or has a default value on this 
   element, false otherwise.public void setAttribute(java.lang.String name,
                java.lang.String value)
org.w3c.dom.ElementAttr node plus any 
 Text and EntityReference nodes, build the 
 appropriate subtree, and use setAttributeNode to assign 
 it as the value of an attribute.
 setAttributeNS method.setAttribute in interface org.w3c.dom.ElementsetAttribute in class DefaultElementname - The name of the attribute to create or alter.value - Value to set in string form.public int getLineNumber()
public int getColumnNumber()
public int getCharacterOffset()
public java.lang.String getAnnotation()
public java.lang.String getSyntheticAnnotation()
Copyright © 1999-2022 The Apache Software Foundation. All Rights Reserved.