Class NodeImpl

  • All Implemented Interfaces:
    java.lang.Cloneable, org.w3c.dom.events.EventTarget, org.w3c.dom.Node, org.w3c.dom.NodeList
    Direct Known Subclasses:
    AttrImpl, ChildNode

    public abstract class NodeImpl
    extends java.lang.Object
    implements org.w3c.dom.Node, org.w3c.dom.NodeList, org.w3c.dom.events.EventTarget, java.lang.Cloneable
    NodeImpl provides the basic structure of a DOM tree. It is never used directly, but instead is subclassed to add type and data information, and additional methods, appropriate to each node of the tree. Only its subclasses should be instantiated -- and those, with the exception of Document itself, only through a specific Document's factory methods.

    The Node interface provides shared behaviors such as siblings and children, both for consistancy and so that the most common tree operations may be performed without constantly having to downcast to specific node types. When there is no obvious mapping for one of these queries, it will respond with null. Note that the default behavior is that children are forbidden. To permit them, the subclass ParentNode overrides several methods.

    NodeImpl also implements NodeList, so it can return itself in response to the getChildNodes() query. This eliminiates the need for a separate ChildNodeList object. Note that this is an IMPLEMENTATION DETAIL; applications should _never_ assume that this identity exists.

    All nodes in a single document must originate in that document. (Note that this is much tighter than "must be same implementation") Nodes are all aware of their ownerDocument, and attempts to mismatch will throw WRONG_DOCUMENT_ERR.

    However, to save memory not all nodes always have a direct reference to their ownerDocument. When a node is owned by another node it relies on its owner to store its ownerDocument. Parent nodes always store it though, so there is never more than one level of indirection. And when a node doesn't have an owner, ownerNode refers to its ownerDocument.

    This class doesn't directly support mutation events, however, it still implements the EventTarget interface and forward all related calls to the document so that the document class do so.

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected NodeImpl​(CoreDocumentImpl ownerDocument)
      No public constructor; only subclasses of Node should be instantiated, and those normally via a Document's factory methods
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      void addEventListener​(java.lang.String type, org.w3c.dom.events.EventListener listener, boolean useCapture)  
      org.w3c.dom.Node appendChild​(org.w3c.dom.Node newChild)
      Adds a child node to the end of the list of children for this node.
      protected void changed()
      Denotes that this node has changed.
      protected int changes()  
      org.w3c.dom.Node cloneNode​(boolean deep)
      Returns a duplicate of a given node.
      short compareDocumentPosition​(org.w3c.dom.Node other)
      Compares a node with this node with regard to their position in the document.
      boolean dispatchEvent​(org.w3c.dom.events.Event event)  
      org.w3c.dom.NamedNodeMap getAttributes()
      Return the collection of attributes associated with this node, or null if none.
      java.lang.String getBaseURI()
      The absolute base URI of this node or null if undefined.
      org.w3c.dom.NodeList getChildNodes()
      Obtain a NodeList enumerating all children of this node.
      (package private) org.w3c.dom.Node getElementAncestor​(org.w3c.dom.Node currentNode)  
      java.lang.Object getFeature​(java.lang.String feature, java.lang.String version)  
      org.w3c.dom.Node getFirstChild()
      The first child of this Node, or null if none.
      org.w3c.dom.Node getLastChild()
      The first child of this Node, or null if none.
      int getLength()
      NodeList method: Count the immediate children of this node
      java.lang.String getLocalName()
      Introduced in DOM Level 2.
      java.lang.String getNamespaceURI()
      Introduced in DOM Level 2.
      org.w3c.dom.Node getNextSibling()
      The next child of this node's parent, or null if none
      abstract java.lang.String getNodeName()
      the name of this node.
      protected int getNodeNumber()  
      abstract short getNodeType()
      A short integer indicating what type of node this is.
      java.lang.String getNodeValue()
      Returns the node value.
      org.w3c.dom.Document getOwnerDocument()
      Find the Document that this Node belongs to (the document in whose context the Node was created).
      org.w3c.dom.Node getParentNode()
      Obtain the DOM-tree parent of this node, or null if it is not currently active in the DOM tree (perhaps because it has just been created or removed).
      java.lang.String getPrefix()
      Introduced in DOM Level 2.
      org.w3c.dom.Node getPreviousSibling()
      The previous child of this node's parent, or null if none
      java.lang.String getTextContent()
      This attribute returns the text content of this node and its descendants.
      (package private) void getTextContent​(java.lang.StringBuilder builder)  
      java.lang.Object getUserData​(java.lang.String key)
      Retrieves the object associated to a key on a this node.
      boolean hasAttributes()
      Returns whether this node (if it is an element) has any attributes.
      boolean hasChildNodes()
      Test whether this node has any children.
      (package private) boolean hasStringValue()  
      (package private) void hasStringValue​(boolean value)  
      org.w3c.dom.Node insertBefore​(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)
      Move one or more node(s) to our list of children.
      boolean isDefaultNamespace​(java.lang.String namespaceURI)
      DOM Level 3: Experimental This method checks if the specified namespaceURI is the default namespace or not.
      boolean isEqualNode​(org.w3c.dom.Node arg)
      Tests whether two nodes are equal.
      (package private) boolean isFirstChild()  
      (package private) void isFirstChild​(boolean value)  
      (package private) boolean isIdAttribute()  
      (package private) void isIdAttribute​(boolean value)  
      (package private) boolean isNormalized()  
      (package private) void isNormalized​(boolean value)  
      (package private) boolean isOwned()  
      (package private) void isOwned​(boolean value)  
      boolean isSameNode​(org.w3c.dom.Node other)
      Returns whether this node is the same node as the given one.
      (package private) boolean isSpecified()  
      (package private) void isSpecified​(boolean value)  
      boolean isSupported​(java.lang.String feature, java.lang.String version)
      Introduced in DOM Level 2.
      org.w3c.dom.Node item​(int index)
      NodeList method: Return the Nth immediate child of this node, or null if the index is out of bounds.
      (package private) java.lang.String lookupNamespacePrefix​(java.lang.String namespaceURI, ElementImpl el)  
      java.lang.String lookupNamespaceURI​(java.lang.String specifiedPrefix)
      DOM Level 3 - Experimental: Look up the namespace URI associated to the given prefix, starting from this node.
      java.lang.String lookupPrefix​(java.lang.String namespaceURI)
      DOM Level 3 - Experimental: Look up the prefix associated to the given namespace URI, starting from this node.
      (package private) boolean needsSyncChildren()  
      void needsSyncChildren​(boolean value)  
      void normalize()
      Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes.
      (package private) CoreDocumentImpl ownerDocument()
      same as above but returns internal type and this one is not overridden by CoreDocumentImpl to return null
      (package private) NodeImpl parentNode()  
      (package private) ChildNode previousSibling()  
      org.w3c.dom.Node removeChild​(org.w3c.dom.Node oldChild)
      Remove a child from this Node.
      void removeEventListener​(java.lang.String type, org.w3c.dom.events.EventListener listener, boolean useCapture)  
      org.w3c.dom.Node replaceChild​(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild)
      Make newChild occupy the location that oldChild used to have.
      void setNodeValue​(java.lang.String x)
      Sets the node value.
      protected void setOwnerDocument​(CoreDocumentImpl doc)  
      void setPrefix​(java.lang.String prefix)
      Introduced in DOM Level 2.
      void setTextContent​(java.lang.String textContent)
      This attribute returns the text content of this node and its descendants.
      java.lang.Object setUserData​(java.lang.String key, java.lang.Object data, org.w3c.dom.UserDataHandler handler)
      Associate an object to a key on this node.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NodeImpl

        protected NodeImpl​(CoreDocumentImpl ownerDocument)
        No public constructor; only subclasses of Node should be instantiated, and those normally via a Document's factory methods

        Every Node knows what Document it belongs to.

        Parameters:
        ownerDocument - the owner document
    • Method Detail

      • getNodeType

        public abstract 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:
        getNodeType in interface org.w3c.dom.Node
      • getNodeName

        public abstract java.lang.String getNodeName()
        the name of this node.
        Specified by:
        getNodeName in interface org.w3c.dom.Node
      • getNodeValue

        public java.lang.String getNodeValue()
                                      throws org.w3c.dom.DOMException
        Returns the node value.
        Specified by:
        getNodeValue in interface org.w3c.dom.Node
        Throws:
        org.w3c.dom.DOMException - DOMSTRING_SIZE_ERR
      • setNodeValue

        public void setNodeValue​(java.lang.String x)
                          throws org.w3c.dom.DOMException
        Sets the node value.
        Specified by:
        setNodeValue in interface org.w3c.dom.Node
        Throws:
        org.w3c.dom.DOMException - NO_MODIFICATION_ALLOWED_ERR
      • appendChild

        public org.w3c.dom.Node appendChild​(org.w3c.dom.Node newChild)
                                     throws org.w3c.dom.DOMException
        Adds a child node to the end of the list of children for this node. Convenience shorthand for insertBefore(newChild,null).
        Specified by:
        appendChild in interface org.w3c.dom.Node
        Returns:
        newChild, in its new state (relocated, or emptied in the case of DocumentNode.)
        Throws:
        org.w3c.dom.DOMException - HIERARCHY_REQUEST_ERR if newChild is of a type that shouldn't be a child of this node.
        org.w3c.dom.DOMException - WRONG_DOCUMENT_ERR if newChild has a different owner document than we do.
        org.w3c.dom.DOMException - NO_MODIFICATION_ALLOWED_ERR if this node is read-only.
        See Also:
        By default we do not accept any children, ParentNode overrides this., ParentNode
      • getOwnerDocument

        public org.w3c.dom.Document getOwnerDocument()
        Find the Document that this Node belongs to (the document in whose context the Node was created). The Node may or may not currently be part of that Document's actual contents.
        Specified by:
        getOwnerDocument in interface org.w3c.dom.Node
      • ownerDocument

        CoreDocumentImpl ownerDocument()
        same as above but returns internal type and this one is not overridden by CoreDocumentImpl to return null
      • getNodeNumber

        protected int getNodeNumber()
        Returns:
        the node number
      • getParentNode

        public org.w3c.dom.Node getParentNode()
        Obtain the DOM-tree parent of this node, or null if it is not currently active in the DOM tree (perhaps because it has just been created or removed). Note that Document, DocumentFragment, and Attribute will never have parents.
        Specified by:
        getParentNode in interface org.w3c.dom.Node
      • getNextSibling

        public org.w3c.dom.Node getNextSibling()
        The next child of this node's parent, or null if none
        Specified by:
        getNextSibling in interface org.w3c.dom.Node
      • getPreviousSibling

        public org.w3c.dom.Node getPreviousSibling()
        The previous child of this node's parent, or null if none
        Specified by:
        getPreviousSibling in interface org.w3c.dom.Node
      • previousSibling

        ChildNode previousSibling()
      • getAttributes

        public org.w3c.dom.NamedNodeMap getAttributes()
        Return the collection of attributes associated with this node, or null if none. At this writing, Element is the only type of node which will ever have attributes.
        Specified by:
        getAttributes in interface org.w3c.dom.Node
        See Also:
        ElementImpl
      • hasAttributes

        public boolean hasAttributes()
        Returns whether this node (if it is an element) has any attributes.
        Specified by:
        hasAttributes in interface org.w3c.dom.Node
        Returns:
        true if this node has any attributes, false otherwise.
        See Also:
        ElementImpl
      • hasChildNodes

        public boolean hasChildNodes()
        Test whether this node has any children. Convenience shorthand for (Node.getFirstChild()!=null)

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        hasChildNodes in interface org.w3c.dom.Node
        See Also:
        ParentNode
      • getChildNodes

        public org.w3c.dom.NodeList getChildNodes()
        Obtain a NodeList enumerating all children of this node. If there are none, an (initially) empty NodeList is returned.

        NodeLists are "live"; as children are added/removed the NodeList will immediately reflect those changes. Also, the NodeList refers to the actual nodes, so changes to those nodes made via the DOM tree will be reflected in the NodeList and vice versa.

        In this implementation, Nodes implement the NodeList interface and provide their own getChildNodes() support. Other DOMs may solve this differently.

        Specified by:
        getChildNodes in interface org.w3c.dom.Node
      • getFirstChild

        public org.w3c.dom.Node getFirstChild()
        The first child of this Node, or null if none.

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        getFirstChild in interface org.w3c.dom.Node
        See Also:
        ParentNode
      • getLastChild

        public org.w3c.dom.Node getLastChild()
        The first child of this Node, or null if none.

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        getLastChild in interface org.w3c.dom.Node
        See Also:
        ParentNode
      • insertBefore

        public org.w3c.dom.Node insertBefore​(org.w3c.dom.Node newChild,
                                             org.w3c.dom.Node refChild)
                                      throws org.w3c.dom.DOMException
        Move one or more node(s) to our list of children. Note that this implicitly removes them from their previous parent.

        By default we do not accept any children, ParentNode overrides this.

        Specified by:
        insertBefore in interface org.w3c.dom.Node
        Parameters:
        newChild - The Node to be moved to our subtree. As a convenience feature, inserting a DocumentNode will instead insert all its children.
        refChild - Current child which newChild should be placed immediately before. If refChild is null, the insertion occurs after all existing Nodes, like appendChild().
        Returns:
        newChild, in its new state (relocated, or emptied in the case of DocumentNode.)
        Throws:
        org.w3c.dom.DOMException - HIERARCHY_REQUEST_ERR if newChild is of a type that shouldn't be a child of this node, or if newChild is an ancestor of this node.
        org.w3c.dom.DOMException - WRONG_DOCUMENT_ERR if newChild has a different owner document than we do.
        org.w3c.dom.DOMException - NOT_FOUND_ERR if refChild is not a child of this node.
        org.w3c.dom.DOMException - NO_MODIFICATION_ALLOWED_ERR if this node is read-only.
        See Also:
        ParentNode
      • removeChild

        public org.w3c.dom.Node removeChild​(org.w3c.dom.Node oldChild)
                                     throws org.w3c.dom.DOMException
        Remove a child from this Node. The removed child's subtree remains intact so it may be re-inserted elsewhere.

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        removeChild in interface org.w3c.dom.Node
        Returns:
        oldChild, in its new state (removed).
        Throws:
        org.w3c.dom.DOMException - NOT_FOUND_ERR if oldChild is not a child of this node.
        org.w3c.dom.DOMException - NO_MODIFICATION_ALLOWED_ERR if this node is read-only.
        See Also:
        ParentNode
      • replaceChild

        public org.w3c.dom.Node replaceChild​(org.w3c.dom.Node newChild,
                                             org.w3c.dom.Node oldChild)
                                      throws org.w3c.dom.DOMException
        Make newChild occupy the location that oldChild used to have. Note that newChild will first be removed from its previous parent, if any. Equivalent to inserting newChild before oldChild, then removing oldChild.

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        replaceChild in interface org.w3c.dom.Node
        Returns:
        oldChild, in its new state (removed).
        Throws:
        org.w3c.dom.DOMException - HIERARCHY_REQUEST_ERR if newChild is of a type that shouldn't be a child of this node, or if newChild is one of our ancestors.
        org.w3c.dom.DOMException - WRONG_DOCUMENT_ERR if newChild has a different owner document than we do.
        org.w3c.dom.DOMException - NOT_FOUND_ERR if oldChild is not a child of this node.
        org.w3c.dom.DOMException - NO_MODIFICATION_ALLOWED_ERR if this node is read-only.
        See Also:
        ParentNode
      • getLength

        public int getLength()
        NodeList method: Count the immediate children of this node

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        getLength in interface org.w3c.dom.NodeList
      • item

        public org.w3c.dom.Node item​(int index)
        NodeList method: Return the Nth immediate child of this node, or null if the index is out of bounds.

        By default we do not have any children, ParentNode overrides this.

        Specified by:
        item in interface org.w3c.dom.NodeList
      • normalize

        public void normalize()
        Puts all Text nodes in the full depth of the sub-tree underneath this Node, including attribute nodes, into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates Text nodes, i.e., there are no adjacent Text nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer lookups) that depend on a particular document tree structure are to be used.In cases where the document contains CDATASections, the normalize operation alone may not be sufficient, since XPointers do not differentiate between Text nodes and CDATASection nodes.

        Note that this implementation simply calls normalize() on this Node's children. It is up to implementors or Node to override normalize() to take action.

        Specified by:
        normalize in interface org.w3c.dom.Node
      • isSupported

        public boolean isSupported​(java.lang.String feature,
                                   java.lang.String version)
        Introduced in DOM Level 2.

        Tests whether the DOM implementation implements a specific feature and that feature is supported by this node.

        Specified by:
        isSupported in interface org.w3c.dom.Node
        Parameters:
        feature - The package name of the feature to test. This is the same name as what can be passed to the method hasFeature on DOMImplementation.
        version - This is the version number of the package name to test. In Level 2, version 1, this is the string "2.0". If the version is not specified, supporting any version of the feature will cause the method to return true.
        Returns:
        boolean Returns true if this node defines a subtree within which the specified feature is supported, false otherwise.
      • getNamespaceURI

        public java.lang.String getNamespaceURI()
        Introduced in DOM Level 2.

        The namespace URI of this node, or null if it is unspecified. When this node is of any type other than ELEMENT_NODE and ATTRIBUTE_NODE, this is always null and setting it has no effect.

        This is not a computed value that is the result of a namespace lookup based on an examination of the namespace declarations in scope. It is merely the namespace URI given at creation time.

        For nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is null.

        Specified by:
        getNamespaceURI in interface org.w3c.dom.Node
        See Also:
        AttrNSImpl, ElementNSImpl
      • getPrefix

        public java.lang.String getPrefix()
        Introduced in DOM Level 2.

        The namespace prefix of this node, or null if it is unspecified. When this node is of any type other than ELEMENT_NODE and ATTRIBUTE_NODE this is always null and setting it has no effect.

        For nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is null.

        Specified by:
        getPrefix in interface org.w3c.dom.Node
        See Also:
        AttrNSImpl, ElementNSImpl
      • setPrefix

        public void setPrefix​(java.lang.String prefix)
                       throws org.w3c.dom.DOMException
        Introduced in DOM Level 2.

        The namespace prefix of this node, or null if it is unspecified. When this node is of any type other than ELEMENT_NODE and ATTRIBUTE_NODE this is always null and setting it has no effect.

        For nodes created with a DOM Level 1 method, such as createElement from the Document interface, this is null.

        Note that setting this attribute changes the nodeName attribute, which holds the qualified name, as well as the tagName and name attributes of the Element and Attr interfaces, when applicable.

        Specified by:
        setPrefix in interface org.w3c.dom.Node
        Throws:
        org.w3c.dom.DOMException - INVALID_CHARACTER_ERR Raised if the specified prefix contains an invalid character.
        See Also:
        AttrNSImpl, ElementNSImpl
      • getLocalName

        public java.lang.String getLocalName()
        Introduced in DOM Level 2.

        Returns the local part of the qualified name of this node. For nodes created with a DOM Level 1 method, such as createElement from the Document interface, and for nodes of any type other than ELEMENT_NODE and ATTRIBUTE_NODE this is the same as the nodeName attribute.

        Specified by:
        getLocalName in interface org.w3c.dom.Node
        See Also:
        AttrNSImpl, ElementNSImpl
      • addEventListener

        public void addEventListener​(java.lang.String type,
                                     org.w3c.dom.events.EventListener listener,
                                     boolean useCapture)
        Specified by:
        addEventListener in interface org.w3c.dom.events.EventTarget
      • removeEventListener

        public void removeEventListener​(java.lang.String type,
                                        org.w3c.dom.events.EventListener listener,
                                        boolean useCapture)
        Specified by:
        removeEventListener in interface org.w3c.dom.events.EventTarget
      • dispatchEvent

        public boolean dispatchEvent​(org.w3c.dom.events.Event event)
        Specified by:
        dispatchEvent in interface org.w3c.dom.events.EventTarget
      • getBaseURI

        public java.lang.String getBaseURI()
        The absolute base URI of this node or null if undefined. This value is computed according to . However, when the Document supports the feature "HTML" , the base URI is computed using first the value of the href attribute of the HTML BASE element if any, and the value of the documentURI attribute from the Document interface otherwise.
        When the node is an Element, a Document or a a ProcessingInstruction, this attribute represents the properties [base URI] defined in . When the node is a Notation, an Entity, or an EntityReference, this attribute represents the properties [declaration base URI] in the . How will this be affected by resolution of relative namespace URIs issue?It's not.Should this only be on Document, Element, ProcessingInstruction, Entity, and Notation nodes, according to the infoset? If not, what is it equal to on other nodes? Null? An empty string? I think it should be the parent's.No.Should this be read-only and computed or and actual read-write attribute?Read-only and computed (F2F 19 Jun 2000 and teleconference 30 May 2001).If the base HTML element is not yet attached to a document, does the insert change the Document.baseURI? Yes. (F2F 26 Sep 2001)
        Specified by:
        getBaseURI in interface org.w3c.dom.Node
      • compareDocumentPosition

        public short compareDocumentPosition​(org.w3c.dom.Node other)
                                      throws org.w3c.dom.DOMException
        Compares a node with this node with regard to their position in the document.
        Specified by:
        compareDocumentPosition in interface org.w3c.dom.Node
        Parameters:
        other - The node to compare against this node.
        Returns:
        Returns how the given node is positioned relatively to this node.
        Throws:
        org.w3c.dom.DOMException
      • getTextContent

        public java.lang.String getTextContent()
                                        throws org.w3c.dom.DOMException
        This attribute returns the text content of this node and its descendants. When it is defined to be null, setting it has no effect. When set, any possible children this node may have are removed and replaced by a single Text node containing the string this attribute is set to. On getting, no serialization is performed, the returned string does not contain any markup. No whitespace normalization is performed, the returned string does not contain the element content whitespaces . Similarly, on setting, no parsing is performed either, the input string is taken as pure textual content.
        The string returned is made of the text content of this node depending on its type, as defined below:
        Node type Content
        ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, DOCUMENT_FRAGMENT_NODE concatenation of the textContent attribute value of every child node, excluding COMMENT_NODE and PROCESSING_INSTRUCTION_NODE nodes
        ATTRIBUTE_NODE, TEXT_NODE, CDATA_SECTION_NODE, COMMENT_NODE, PROCESSING_INSTRUCTION_NODE nodeValue
        DOCUMENT_NODE, DOCUMENT_TYPE_NODE, NOTATION_NODE null
        Specified by:
        getTextContent in interface org.w3c.dom.Node
        Throws:
        org.w3c.dom.DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters than fit in a DOMString variable on the implementation platform.
      • getTextContent

        void getTextContent​(java.lang.StringBuilder builder)
                     throws org.w3c.dom.DOMException
        Throws:
        org.w3c.dom.DOMException
      • setTextContent

        public void setTextContent​(java.lang.String textContent)
                            throws org.w3c.dom.DOMException
        This attribute returns the text content of this node and its descendants. When it is defined to be null, setting it has no effect. When set, any possible children this node may have are removed and replaced by a single Text node containing the string this attribute is set to. On getting, no serialization is performed, the returned string does not contain any markup. No whitespace normalization is performed, the returned string does not contain the element content whitespaces . Similarly, on setting, no parsing is performed either, the input string is taken as pure textual content.
        The string returned is made of the text content of this node depending on its type, as defined below:
        Node type Content
        ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, DOCUMENT_FRAGMENT_NODE concatenation of the textContent attribute value of every child node, excluding COMMENT_NODE and PROCESSING_INSTRUCTION_NODE nodes
        ATTRIBUTE_NODE, TEXT_NODE, CDATA_SECTION_NODE, COMMENT_NODE, PROCESSING_INSTRUCTION_NODE nodeValue
        DOCUMENT_NODE, DOCUMENT_TYPE_NODE, NOTATION_NODE null
        Specified by:
        setTextContent in interface org.w3c.dom.Node
        Throws:
        org.w3c.dom.DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters than fit in a DOMString variable on the implementation platform.
      • isSameNode

        public boolean isSameNode​(org.w3c.dom.Node other)
        Returns whether this node is the same node as the given one.
        This method provides a way to determine whether two Node references returned by the implementation reference the same object. When two Node references are references to the same object, even if through a proxy, the references may be used completely interchangably, such that all attributes have the same values and calling the same DOM method on either reference always has exactly the same effect.
        Specified by:
        isSameNode in interface org.w3c.dom.Node
        Parameters:
        other - The node to test against.
        Returns:
        Returns true if the nodes are the same, false otherwise.
      • isDefaultNamespace

        public boolean isDefaultNamespace​(java.lang.String namespaceURI)
        DOM Level 3: Experimental This method checks if the specified namespaceURI is the default namespace or not.
        Specified by:
        isDefaultNamespace in interface org.w3c.dom.Node
        Parameters:
        namespaceURI - The namespace URI to look for.
        Returns:
        true if the specified namespaceURI is the default namespace, false otherwise.
      • lookupPrefix

        public java.lang.String lookupPrefix​(java.lang.String namespaceURI)
        DOM Level 3 - Experimental: Look up the prefix associated to the given namespace URI, starting from this node.
        Specified by:
        lookupPrefix in interface org.w3c.dom.Node
        Parameters:
        namespaceURI - the namespace uri
        Returns:
        the prefix for the namespace
      • lookupNamespaceURI

        public java.lang.String lookupNamespaceURI​(java.lang.String specifiedPrefix)
        DOM Level 3 - Experimental: Look up the namespace URI associated to the given prefix, starting from this node. Use lookupNamespaceURI(null) to lookup the default namespace
        Specified by:
        lookupNamespaceURI in interface org.w3c.dom.Node
      • getElementAncestor

        org.w3c.dom.Node getElementAncestor​(org.w3c.dom.Node currentNode)
      • lookupNamespacePrefix

        java.lang.String lookupNamespacePrefix​(java.lang.String namespaceURI,
                                               ElementImpl el)
      • isEqualNode

        public boolean isEqualNode​(org.w3c.dom.Node arg)
        Tests whether two nodes are equal.
        This method tests for equality of nodes, not sameness (i.e., whether the two nodes are references to the same object) which can be tested with Node.isSameNode. All nodes that are the same will also be equal, though the reverse may not be true.
        Two nodes are equal if and only if the following conditions are satisfied: The two nodes are of the same type.The following string attributes are equal: nodeName, localName, namespaceURI, prefix, nodeValue , baseURI. This is: they are both null, or they have the same length and are character for character identical. The attributes NamedNodeMaps are equal. This is: they are both null, or they have the same length and for each node that exists in one map there is a node that exists in the other map and is equal, although not necessarily at the same index.The childNodes NodeLists are equal. This is: they are both null, or they have the same length and contain equal nodes at the same index. This is true for Attr nodes as for any other type of node. Note that normalization can affect equality; to avoid this, nodes should be normalized before being compared.
        For two DocumentType nodes to be equal, the following conditions must also be satisfied: The following string attributes are equal: publicId, systemId, internalSubset.The entities NamedNodeMaps are equal.The notations NamedNodeMaps are equal.
        On the other hand, the following do not affect equality: the ownerDocument attribute, the specified attribute for Attr nodes, the isWhitespaceInElementContent attribute for Text nodes, as well as any user data or event listeners registered on the nodes.
        Specified by:
        isEqualNode in interface org.w3c.dom.Node
        Parameters:
        arg - The node to compare equality with.
        Returns:
        If the nodes, and possibly subtrees are equal, true otherwise false.
      • getFeature

        public java.lang.Object getFeature​(java.lang.String feature,
                                           java.lang.String version)
        Specified by:
        getFeature in interface org.w3c.dom.Node
      • setUserData

        public java.lang.Object setUserData​(java.lang.String key,
                                            java.lang.Object data,
                                            org.w3c.dom.UserDataHandler handler)
        Associate an object to a key on this node. The object can later be retrieved from this node by calling getUserData with the same key.
        Specified by:
        setUserData in interface org.w3c.dom.Node
        Parameters:
        key - The key to associate the object to.
        data - The object to associate to the given key, or null to remove any existing association to that key.
        handler - The handler to associate to that key, or null.
        Returns:
        Returns the DOMObject previously associated to the given key on this node, or null if there was none.
      • getUserData

        public java.lang.Object getUserData​(java.lang.String key)
        Retrieves the object associated to a key on a this node. The object must first have been set to this node by calling setUserData with the same key.
        Specified by:
        getUserData in interface org.w3c.dom.Node
        Parameters:
        key - The key the object is associated to.
        Returns:
        Returns the DOMObject associated to the given key on this node, or null if there was none.
      • changed

        protected void changed()
        Denotes that this node has changed.
      • changes

        protected int changes()
        Returns:
        the number of changes to this node.
      • needsSyncChildren

        final boolean needsSyncChildren()
      • needsSyncChildren

        public final void needsSyncChildren​(boolean value)
      • isOwned

        final boolean isOwned()
      • isOwned

        final void isOwned​(boolean value)
      • isFirstChild

        final boolean isFirstChild()
      • isFirstChild

        final void isFirstChild​(boolean value)
      • isSpecified

        final boolean isSpecified()
      • isSpecified

        final void isSpecified​(boolean value)
      • hasStringValue

        final boolean hasStringValue()
      • hasStringValue

        final void hasStringValue​(boolean value)
      • isNormalized

        final boolean isNormalized()
      • isNormalized

        final void isNormalized​(boolean value)
      • isIdAttribute

        final boolean isIdAttribute()
      • isIdAttribute

        final void isIdAttribute​(boolean value)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object