public abstract class AbstractElement extends AbstractParentChildNode implements Element, ElementTraversal
Element
interface.Modifier and Type | Class and Description |
---|---|
class |
AbstractElement.ElementTypeInfo
Inner class to hold type information about this element.
|
protected static class |
AbstractElement.Entry
To manage collisions in the attributes map.
|
class |
AbstractElement.NamedNodeHashMap
An implementation of the
NamedNodeMap . |
AbstractParentNode.ChildNodes, AbstractParentNode.ElementsByTagName, AbstractParentNode.ElementsByTagNameNS
Modifier and Type | Field and Description |
---|---|
protected NamedNodeMap |
attributes
The attributes of this element.
|
protected TypeInfo |
typeInfo
The element type information.
|
nextSibling, parentNode, previousSibling
childNodes
DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, EMPTY_NODE_LIST, eventSupport, managerData, ownerDocument, userData, userDataHandlers
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
Modifier | Constructor and Description |
---|---|
protected |
AbstractElement()
Creates a new AbstractElement object.
|
protected |
AbstractElement(String name,
AbstractDocument owner)
Creates a new AbstractElement object.
|
getNextSibling, getParentNode, getPreviousSibling, setNextSibling, setParentNode, setPreviousSibling
appendChild, checkAndRemove, fireDOMNodeInsertedEvent, fireDOMNodeInsertedIntoDocumentEvent, fireDOMNodeRemovedEvent, fireDOMNodeRemovedFromDocumentEvent, fireDOMSubtreeModifiedEvent, getChildNodes, getElementsByTagName, getElementsByTagNameNS, getFirstChild, getLastChild, getTextContent, hasChildNodes, insertBefore, removeChild, replaceChild
addEventListener, addEventListenerNS, cloneNode, compareDocumentPosition, compareNamedNodeMaps, compareStrings, createDOMException, dispatchEvent, fireDOMCharacterDataModifiedEvent, fireUserDataHandlers, getBaseURI, getBaseURI, getCascadedXMLBase, getCurrentDocument, getEventSupport, getFeature, getLocalName, getManagerData, getNamespaceURI, getNodeValue, getOwnerDocument, getParentNodeEventTarget, getPrefix, getUserData, getXblBoundElement, getXblChildNodes, getXblDefinitions, getXblFirstChild, getXblFirstElementChild, getXblLastChild, getXblLastElementChild, getXblNextElementSibling, getXblNextSibling, getXblParentNode, getXblPreviousElementSibling, getXblPreviousSibling, getXblScopedChildNodes, getXblShadowTree, hasEventListenerNS, initializeEventSupport, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespacePrefix, lookupNamespaceURI, lookupPrefix, newNode, removeEventListener, removeEventListenerNS, setManagerData, setNodeName, setNodeValue, setOwnerDocument, setPrefix, setSpecified, setTextContent, setUserData, willTriggerNS
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getElementsByTagName, getElementsByTagNameNS
appendChild, cloneNode, compareDocumentPosition, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
isReadonly, setReadonly
protected NamedNodeMap attributes
protected TypeInfo typeInfo
protected AbstractElement()
protected AbstractElement(String name, AbstractDocument owner)
name
- The element name for validation purposes.owner
- The owner document.DOMException
- INVALID_CHARACTER_ERR: if name contains invalid characters,public short getNodeType()
Node.getNodeType()
.getNodeType
in interface Node
Node.ELEMENT_NODE
public boolean hasAttributes()
Node.hasAttributes()
.hasAttributes
in interface Node
hasAttributes
in class AbstractNode
public NamedNodeMap getAttributes()
Node.getAttributes()
.getAttributes
in interface Node
getAttributes
in class AbstractNode
public String getTagName()
Element.getTagName()
.getTagName
in interface Element
Node.getNodeName()
.public boolean hasAttribute(String name)
Element.hasAttribute(String)
.hasAttribute
in interface Element
public String getAttribute(String name)
Element.getAttribute(String)
.getAttribute
in interface Element
public void setAttribute(String name, String value) throws DOMException
Element.setAttribute(String,String)
.setAttribute
in interface Element
DOMException
public void removeAttribute(String name) throws DOMException
Element.removeAttribute(String)
.removeAttribute
in interface Element
DOMException
public Attr getAttributeNode(String name)
Element.getAttributeNode(String)
.getAttributeNode
in interface Element
public Attr setAttributeNode(Attr newAttr) throws DOMException
Element.setAttributeNode(Attr)
.setAttributeNode
in interface Element
DOMException
public Attr removeAttributeNode(Attr oldAttr) throws DOMException
Element.removeAttributeNode(Attr)
.removeAttributeNode
in interface Element
DOMException
public void normalize()
Node.normalize()
.normalize
in interface Node
normalize
in class AbstractParentNode
public boolean hasAttributeNS(String namespaceURI, String localName)
Element.hasAttributeNS(String,String)
.hasAttributeNS
in interface Element
public String getAttributeNS(String namespaceURI, String localName)
Element.getAttributeNS(String,String)
.getAttributeNS
in interface Element
public void setAttributeNS(String namespaceURI, String qualifiedName, String value) throws DOMException
Element.setAttributeNS(String,String,String)
.setAttributeNS
in interface Element
DOMException
public void removeAttributeNS(String namespaceURI, String localName) throws DOMException
Element.removeAttributeNS(String,String)
.removeAttributeNS
in interface Element
DOMException
public Attr getAttributeNodeNS(String namespaceURI, String localName)
Element.getAttributeNodeNS(String,String)
.getAttributeNodeNS
in interface Element
public Attr setAttributeNodeNS(Attr newAttr) throws DOMException
Element.setAttributeNodeNS(Attr)
.setAttributeNodeNS
in interface Element
DOMException
public TypeInfo getSchemaTypeInfo()
Element.getSchemaTypeInfo()
.getSchemaTypeInfo
in interface Element
public void setIdAttribute(String name, boolean isId) throws DOMException
Element.setIdAttribute(String,boolean)
.setIdAttribute
in interface Element
DOMException
public void setIdAttributeNS(String ns, String ln, boolean isId) throws DOMException
Element.setIdAttributeNS(String,String,boolean)
.setIdAttributeNS
in interface Element
DOMException
public void setIdAttributeNode(Attr attr, boolean isId) throws DOMException
Element.setIdAttributeNode(Attr,boolean)
.setIdAttributeNode
in interface Element
DOMException
protected Attr getIdAttribute()
protected String getId()
protected void nodeAdded(Node node)
nodeAdded
in class AbstractParentNode
protected void nodeToBeRemoved(Node node)
nodeToBeRemoved
in class AbstractParentNode
protected NamedNodeMap createAttributes()
protected Node export(Node n, AbstractDocument d)
export
in class AbstractNode
n
- The clone node.d
- The destination document.protected Node deepExport(Node n, AbstractDocument d)
deepExport
in class AbstractParentNode
n
- The clone node.d
- The destination document.protected Node copyInto(Node n)
copyInto
in class AbstractNode
n
- a node of the type of this.protected Node deepCopyInto(Node n)
deepCopyInto
in class AbstractParentNode
n
- a node of the type of this.protected void checkChildType(Node n, boolean replace)
checkChildType
in class AbstractNode
n
- The node to be inserted.public void fireDOMAttrModifiedEvent(String name, Attr node, String oldv, String newv, short change)
name
- The attribute's name.node
- The attribute's node.oldv
- The old value of the attribute.newv
- The new value of the attribute.change
- The modification type.protected void attrModified(Attr node, String oldv, String newv)
protected void attrRemoved(Attr node, String oldv)
public Element getFirstElementChild()
ElementTraversal.getFirstElementChild()
.getFirstElementChild
in interface ElementTraversal
public Element getLastElementChild()
ElementTraversal.getLastElementChild()
.getLastElementChild
in interface ElementTraversal
public Element getNextElementSibling()
ElementTraversal.getNextElementSibling()
.getNextElementSibling
in interface ElementTraversal
public Element getPreviousElementSibling()
ElementTraversal.getPreviousElementSibling()
.getPreviousElementSibling
in interface ElementTraversal
public int getChildElementCount()
ElementTraversal.getChildElementCount()
.getChildElementCount
in interface ElementTraversal
Copyright © 2000–2023 Apache Software Foundation. All rights reserved.