Interface ExtendedNode

    • Field Summary

      • Fields 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_NODE
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean isReadonly()
      Tests whether this node is readonly.
      void setNextSibling​(org.w3c.dom.Node n)
      Sets the node immediately following this node.
      void setNodeName​(java.lang.String v)
      Sets the name of this node.
      void setOwnerDocument​(org.w3c.dom.Document doc)
      Sets the owner document of this node.
      void setParentNode​(org.w3c.dom.Node v)
      Sets the parent node.
      void setPreviousSibling​(org.w3c.dom.Node n)
      Sets the node immediately preceding this node.
      void setReadonly​(boolean v)
      Sets this node readonly attribute.
      void setSpecified​(boolean v)
      Sets the value of the specified attribute.
      • Methods inherited from interface org.w3c.dom.Node

        appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
    • Method Detail

      • setNodeName

        void setNodeName​(java.lang.String v)
        Sets the name of this node.
      • isReadonly

        boolean isReadonly()
        Tests whether this node is readonly.
      • setReadonly

        void setReadonly​(boolean v)
        Sets this node readonly attribute.
      • setOwnerDocument

        void setOwnerDocument​(org.w3c.dom.Document doc)
        Sets the owner document of this node.
      • setParentNode

        void setParentNode​(org.w3c.dom.Node v)
        Sets the parent node.
      • setPreviousSibling

        void setPreviousSibling​(org.w3c.dom.Node n)
        Sets the node immediately preceding this node.
      • setNextSibling

        void setNextSibling​(org.w3c.dom.Node n)
        Sets the node immediately following this node.
      • setSpecified

        void setSpecified​(boolean v)
        Sets the value of the specified attribute. This method only applies to Attr objects.