Interface Node

    • Method Detail

      • baseURI

        java.lang.String baseURI()
      • firstChild

        Node firstChild()
      • lastChild

        Node lastChild()
      • nextSibling

        Node nextSibling()
      • nodeName

        java.lang.String nodeName()
      • nodeType

        int nodeType()
      • ownerDocument

        Document ownerDocument()
      • parentNode

        Node parentNode()
      • parentElement

        Element parentElement()
      • previousSibling

        Node previousSibling()
      • textContent

        java.lang.String textContent()
      • textContent

        void textContent​(java.lang.String aNewValue)
      • appendChild

        void appendChild​(Node aNode)
      • cloneNode

        Node cloneNode()
      • compareDocumentPosition

        int compareDocumentPosition​(Node aOtherNode)
      • contains

        boolean contains​(Node aOtherNode)
      • getRootNode

        Node getRootNode()
      • hasChildNodes

        boolean hasChildNodes()
      • insertBefore

        void insertBefore​(Node aNewNode,
                          Node aReferenceNode)
      • removeChild

        void removeChild​(Node aChildNode)
      • replaceChild

        void replaceChild​(Node aNewChild,
                          Node aOldChild)
      • removeAll

        void removeAll()