Class ElementImpl
- All Implemented Interfaces:
Serializable,Cloneable,Element,ElementTraversal,EventTarget,Node,NodeList,TypeInfo
- Direct Known Subclasses:
DeferredElementImpl,ElementNSImpl
Elements may have Attributes associated with them; the API for this is defined in Node, but the function is implemented here. In general, XML applications should retrive Attributes as Nodes, since they may contain entity references and hence be a fairly complex sub-tree. HTML users will be dealing with simple string values, and convenience methods are provided to work in terms of Strings.
ElementImpl does not support Namespaces. ElementNSImpl, which inherits from it, does.
INTERNAL:
- Usage of this class is not supported. It may be altered or removed at any time.
- Since:
- PR-DOM-Level-1-19980818.
- Version:
- $Id: ElementImpl.java 938635 2010-04-27 20:23:42Z mrglavas $
- Author:
- Arnaud Le Hors, IBM, Joe Kesselman, IBM, Andy Clark, IBM, Ralf Pfeiffer, IBM, Michael Glavassevich, IBM
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected AttributeMapAttributes.protected StringElement name.Fields inherited from class org.apache.xerces.dom.ParentNode
firstChild, fNodeListCache, ownerDocumentFields inherited from class org.apache.xerces.dom.ChildNode
nextSibling, previousSiblingFields inherited from class org.apache.xerces.dom.NodeImpl
DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_IS_CONTAINED, DOCUMENT_POSITION_PRECEDING, ELEMENT_DEFINITION_NODE, FIRSTCHILD, flags, HASSTRING, ID, IGNORABLEWS, NORMALIZED, OWNED, ownerNode, READONLY, SPECIFIED, SYNCCHILDREN, SYNCDATA, TREE_POSITION_ANCESTOR, TREE_POSITION_DESCENDANT, TREE_POSITION_DISCONNECTED, TREE_POSITION_EQUIVALENT, TREE_POSITION_FOLLOWING, TREE_POSITION_PRECEDING, TREE_POSITION_SAME_NODEFields inherited from interface org.w3c.dom.Node
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_NODEFields inherited from interface org.w3c.dom.TypeInfo
DERIVATION_EXTENSION, DERIVATION_LIST, DERIVATION_RESTRICTION, DERIVATION_UNION -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedElementImpl(CoreDocumentImpl ownerDoc, String name) Factory constructor. -
Method Summary
Modifier and TypeMethodDescriptioncloneNode(boolean deep) Return a duplicate copy of this Element.getAttribute(String name) Look up a single Attribute by name.getAttributeNode(String name) Look up a single Attribute by name.getAttributeNodeNS(String namespaceURI, String localName) Retrieves an Attr node by local name and namespace URI.getAttributeNS(String namespaceURI, String localName) Introduced in DOM Level 2.Retrieve all the Attributes as a set.DOM Level 3 WD - Experimental.final intprotected NamedNodeMapImplGet the default attributes.getElementsByTagName(String tagname) Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.getElementsByTagNameNS(String namespaceURI, String localName) Introduced in DOM Level 2.final Elementfinal Elementfinal ElementReturns the element nameshortA short integer indicating what type of node this is.final ElementMethod getSchemaTypeInfo.Returns the name of the Element.protected intgetXercesAttribute(String namespaceURI, String localName) NON-DOM: get inded of an attributeprotected AttrNON-DOM Returns the xml:base attribute.booleanhasAttribute(String name) Introduced in DOM Level 2.booleanhasAttributeNS(String namespaceURI, String localName) Introduced in DOM Level 2.booleanIntroduced in DOM Level 2.booleanisDerivedFrom(String typeNamespaceArg, String typeNameArg, int derivationMethod) Introduced in DOM Level 3.booleanisEqualNode(Node arg) DOM Level 3 WD- Experimental.voidIn "normal form" (as read from a source file), there will never be two Text children in succession.protected voidReconcile default attributes.voidremoveAttribute(String name) Remove the named attribute from this Element.removeAttributeNode(Attr oldAttr) Remove the specified attribute/value pair.voidremoveAttributeNS(String namespaceURI, String localName) Introduced in DOM Level 2.voidsetAttribute(String name, String value) Add a new name/value pair, or replace the value of the existing attribute having that name.setAttributeNode(Attr newAttr) Add a new attribute/value pair, or replace the value of the existing attribute with that name.setAttributeNodeNS(Attr newAttr) Introduced in DOM Level 2.voidsetAttributeNS(String namespaceURI, String qualifiedName, String value) Introduced in DOM Level 2.voidsetIdAttribute(String name, boolean makeId) DOM Level 3: register the given attribute node as an ID attributevoidsetIdAttributeNode(Attr at, boolean makeId) DOM Level 3: register the given attribute node as an ID attributevoidsetIdAttributeNS(String namespaceURI, String localName, boolean makeId) DOM Level 3: register the given attribute node as an ID attributeprotected voidNON-DOM set the ownerDocument of this node, its children, and its attributesvoidsetReadOnly(boolean readOnly, boolean deep) NON-DOM: Subclassed to flip the attributes' readonly switch as well.protected voidSetup the default attributes.protected intsetXercesAttributeNode(Attr attr) NON-DOM: sets attribute node for this elementprotected voidSynchronizes the data (name and value) for fast nodes.Methods inherited from class org.apache.xerces.dom.ParentNode
getChildNodes, getChildNodesUnoptimized, getFirstChild, getLastChild, getLength, getOwnerDocument, getTextContent, hasChildNodes, insertBefore, item, removeChild, replaceChild, setTextContent, synchronizeChildrenMethods inherited from class org.apache.xerces.dom.ChildNode
getNextSibling, getParentNode, getPreviousSiblingMethods inherited from class org.apache.xerces.dom.NodeImpl
addEventListener, appendChild, changed, changes, compareDocumentPosition, compareTreePosition, dispatchEvent, getContainer, getFeature, getLocalName, getNamespaceURI, getNodeNumber, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, getUserDataRecord, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setNodeValue, setPrefix, setUserData, setUserData, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.w3c.dom.Node
appendChild, compareDocumentPosition, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasChildNodes, insertBefore, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
-
Field Details
-
name
Element name. -
attributes
Attributes.
-
-
Constructor Details
-
ElementImpl
Factory constructor. -
ElementImpl
protected ElementImpl()
-
-
Method Details
-
getNodeType
public short getNodeType()A short integer indicating what type of node this is. The named constants for this value are defined in the org.w3c.dom.Node interface.- Specified by:
getNodeTypein interfaceNode- Specified by:
getNodeTypein classNodeImpl
-
getNodeName
Returns the element name- Specified by:
getNodeNamein interfaceNode- Specified by:
getNodeNamein classNodeImpl
-
getAttributes
Retrieve all the Attributes as a set. Note that this API is inherited from Node rather than specified on Element; in fact only Elements will ever have Attributes, but they want to allow folks to "blindly" operate on the tree as a set of Nodes.- Specified by:
getAttributesin interfaceNode- Overrides:
getAttributesin classNodeImpl- See Also:
-
cloneNode
Return a duplicate copy of this Element. Note that its children will not be copied unless the "deep" flag is true, but Attributes are always replicated.- Specified by:
cloneNodein interfaceNode- Overrides:
cloneNodein classParentNode- See Also:
-
getBaseURI
DOM Level 3 WD - Experimental. Retrieve baseURI- Specified by:
getBaseURIin interfaceNode- Overrides:
getBaseURIin classNodeImpl
-
getXMLBaseAttribute
NON-DOM Returns the xml:base attribute. -
setOwnerDocument
NON-DOM set the ownerDocument of this node, its children, and its attributes- Overrides:
setOwnerDocumentin classParentNode
-
getAttribute
Look up a single Attribute by name. Returns the Attribute's string value, or an empty string (NOT null!) to indicate that the name did not map to a currently defined attribute.Note: Attributes may contain complex node trees. This method returns the "flattened" string obtained from Attribute.getValue(). If you need the structure information, see getAttributeNode().
- Specified by:
getAttributein interfaceElement
-
getAttributeNode
Look up a single Attribute by name. Returns the Attribute Node, so its complete child tree is available. This could be important in XML, where the string rendering may not be sufficient information.If no matching attribute is available, returns null.
- Specified by:
getAttributeNodein interfaceElement
-
getElementsByTagName
Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.Note: NodeList is a "live" view of the DOM. Its contents will change as the DOM changes, and alterations made to the NodeList will be reflected in the DOM.
- Specified by:
getElementsByTagNamein interfaceElement- Parameters:
tagname- The type of element to gather. To obtain a list of all elements no matter what their names, use the wild-card tag name "*".- See Also:
-
getTagName
Returns the name of the Element. Note that Element.nodeName() is defined to also return the tag name.This is case-preserving in XML. HTML should uppercasify it on the way in.
- Specified by:
getTagNamein interfaceElement
-
normalize
public void normalize()In "normal form" (as read from a source file), there will never be two Text children in succession. But DOM users may create successive Text nodes in the course of manipulating the document. Normalize walks the sub-tree and merges adjacent Texts, as if the DOM had been written out and read back in again. This simplifies implementation of higher-level functions that may want to assume that the document is in standard form.To normalize a Document, normalize its top-level Element child.
As of PR-DOM-Level-1-19980818, CDATA -- despite being a subclass of Text -- is considered "markup" and will _not_ be merged either with normal Text or with other CDATASections.
- Specified by:
normalizein interfaceNode- Overrides:
normalizein classParentNode
-
removeAttribute
Remove the named attribute from this Element. If the removed Attribute has a default value, it is immediately replaced thereby.The default logic is actually implemented in NamedNodeMapImpl. PR-DOM-Level-1-19980818 doesn't fully address the DTD, so some of this behavior is likely to change in future versions. ?????
Note that this call "succeeds" even if no attribute by this name existed -- unlike removeAttributeNode, which will throw a not-found exception in that case.
- Specified by:
removeAttributein interfaceElement
-
removeAttributeNode
Remove the specified attribute/value pair. If the removed Attribute has a default value, it is immediately replaced.NOTE: Specifically removes THIS NODE -- not the node with this name, nor the node with these contents. If the specific Attribute object passed in is not stored in this Element, we throw a DOMException. If you really want to remove an attribute by name, use removeAttribute().
- Specified by:
removeAttributeNodein interfaceElement- Returns:
- the Attribute object that was removed.
- Throws:
DOMException
-
setAttribute
Add a new name/value pair, or replace the value of the existing attribute having that name. Note: this method supports only the simplest kind of Attribute, one whose value is a string contained in a single Text node. If you want to assert a more complex value (which XML permits, though HTML doesn't), see setAttributeNode(). The attribute is created with specified=true, meaning it's an explicit value rather than inherited from the DTD as a default. Again, setAttributeNode can be used to achieve other results.- Specified by:
setAttributein interfaceElement
-
setAttributeNode
Add a new attribute/value pair, or replace the value of the existing attribute with that name.This method allows you to add an Attribute that has already been constructed, and hence avoids the limitations of the simple setAttribute() call. It can handle attribute values that have arbitrarily complex tree structure -- in particular, those which had entity references mixed into their text.
- Specified by:
setAttributeNodein interfaceElement- Throws:
DOMException
-
getAttributeNS
Introduced in DOM Level 2.Retrieves an attribute value by local name and namespace URI.
- Specified by:
getAttributeNSin interfaceElement- Parameters:
namespaceURI- The namespace URI of the attribute to retrieve.localName- The local name of the attribute to retrieve.- Returns:
- String The Attr value as a string, or empty string if that attribute does not have a specified or default value.
- Since:
- WD-DOM-Level-2-19990923
-
setAttributeNS
Introduced in DOM Level 2.Adds a new attribute. If the given namespaceURI is null or an empty string and the qualifiedName has a prefix that is "xml", the new attribute is bound to the predefined namespace "http://www.w3.org/XML/1998/namespace" [Namespaces]. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. This value is a simple string, it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create an Attr node plus any Text and EntityReference nodes, build the appropriate subtree, and use setAttributeNodeNS or setAttributeNode to assign it as the value of an attribute.
- Specified by:
setAttributeNSin interfaceElement- Parameters:
namespaceURI- The namespace URI of the attribute to create or alter.qualifiedName- The qualified name of the attribute to create or alter.value- The value to set in string form.- Since:
- WD-DOM-Level-2-19990923
-
removeAttributeNS
Introduced in DOM Level 2.Removes an attribute by local name and namespace URI. If the removed attribute has a default value it is immediately replaced. The replacing attribute has the same namespace URI and local name, as well as the original prefix.
- Specified by:
removeAttributeNSin interfaceElement- Parameters:
namespaceURI- The namespace URI of the attribute to remove.localName- The local name of the attribute to remove.- Since:
- WD-DOM-Level-2-19990923
-
getAttributeNodeNS
Retrieves an Attr node by local name and namespace URI.- Specified by:
getAttributeNodeNSin interfaceElement- Parameters:
namespaceURI- The namespace URI of the attribute to retrieve.localName- The local name of the attribute to retrieve.- Returns:
- Attr The Attr node with the specified attribute local name and namespace URI or null if there is no such attribute.
- Since:
- WD-DOM-Level-2-19990923
-
setAttributeNodeNS
Introduced in DOM Level 2.Adds a new attribute. If an attribute with that local name and namespace URI is already present in the element, it is replaced by the new one.
- Specified by:
setAttributeNodeNSin interfaceElement- Parameters:
newAttr- The Attr node to add to the attribute list. When the Node has no namespaceURI, this method behaves like setAttributeNode.- Returns:
- Attr If the newAttr attribute replaces an existing attribute with the same local name and namespace URI, the * previously existing Attr node is returned, otherwise null is returned.
- Throws:
DOMException- Since:
- WD-DOM-Level-2-19990923
-
setXercesAttributeNode
NON-DOM: sets attribute node for this element -
getXercesAttribute
NON-DOM: get inded of an attribute -
hasAttributes
public boolean hasAttributes()Introduced in DOM Level 2.- Specified by:
hasAttributesin interfaceNode- Overrides:
hasAttributesin classNodeImpl- Returns:
trueif this node has any attributes,falseotherwise.- See Also:
-
hasAttribute
Introduced in DOM Level 2.- Specified by:
hasAttributein interfaceElement
-
hasAttributeNS
Introduced in DOM Level 2.- Specified by:
hasAttributeNSin interfaceElement
-
getElementsByTagNameNS
Introduced in DOM Level 2.Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the Document tree, starting from this node.
- Specified by:
getElementsByTagNameNSin interfaceElement- Parameters:
namespaceURI- The namespace URI of the elements to match on. The special value "*" matches all namespaces. When it is null or an empty string, this method behaves like getElementsByTagName.localName- The local name of the elements to match on. The special value "*" matches all local names.- Returns:
- NodeList A new NodeList object containing all the matched Elements.
- Since:
- WD-DOM-Level-2-19990923
-
isEqualNode
DOM Level 3 WD- Experimental. Override inherited behavior from NodeImpl and ParentNode to check on attributes- Specified by:
isEqualNodein interfaceNode- Overrides:
isEqualNodein classParentNode- Parameters:
arg- The node to compare equality with.- Returns:
- If the nodes, and possibly subtrees are equal,
trueotherwisefalse.
-
setIdAttributeNode
DOM Level 3: register the given attribute node as an ID attribute- Specified by:
setIdAttributeNodein interfaceElement
-
setIdAttribute
DOM Level 3: register the given attribute node as an ID attribute- Specified by:
setIdAttributein interfaceElement
-
setIdAttributeNS
DOM Level 3: register the given attribute node as an ID attribute- Specified by:
setIdAttributeNSin interfaceElement
-
getTypeName
- Specified by:
getTypeNamein interfaceTypeInfo- See Also:
-
getTypeNamespace
- Specified by:
getTypeNamespacein interfaceTypeInfo- See Also:
-
isDerivedFrom
Introduced in DOM Level 3.Checks if a type is derived from another by restriction. See: http://www.w3.org/TR/DOM-Level-3-Core/core.html#TypeInfo-isDerivedFrom
- Specified by:
isDerivedFromin interfaceTypeInfo- Parameters:
typeNamespaceArg- The namspace of the ancestor type declarationtypeNameArg- The name of the ancestor type declarationderivationMethod- The derivation method- Returns:
- boolean True if the type is derived by restriciton for the reference type
-
getSchemaTypeInfo
Method getSchemaTypeInfo.- Specified by:
getSchemaTypeInfoin interfaceElement- Returns:
- TypeInfo
-
setReadOnly
public void setReadOnly(boolean readOnly, boolean deep) NON-DOM: Subclassed to flip the attributes' readonly switch as well.- Overrides:
setReadOnlyin classParentNode- Parameters:
readOnly- True or false as desired.deep- If true, children are also toggled. Note that this will not change the state of an EntityReference or its children, which are always read-only.- See Also:
-
synchronizeData
protected void synchronizeData()Synchronizes the data (name and value) for fast nodes.- Overrides:
synchronizeDatain classNodeImpl
-
setupDefaultAttributes
protected void setupDefaultAttributes()Setup the default attributes. -
reconcileDefaultAttributes
protected void reconcileDefaultAttributes()Reconcile default attributes. -
getDefaultAttributes
Get the default attributes. -
getChildElementCount
public final int getChildElementCount()- Specified by:
getChildElementCountin interfaceElementTraversal- See Also:
-
getFirstElementChild
- Specified by:
getFirstElementChildin interfaceElementTraversal- See Also:
-
getLastElementChild
- Specified by:
getLastElementChildin interfaceElementTraversal- See Also:
-
getNextElementSibling
- Specified by:
getNextElementSiblingin interfaceElementTraversal- See Also:
-
getPreviousElementSibling
- Specified by:
getPreviousElementSiblingin interfaceElementTraversal- See Also:
-