Interface Node

All Superinterfaces:
org.teavm.jso.JSObject
All Known Subinterfaces:
Attr, CDATASection, CharacterData, Comment, Document, DocumentFragment, DocumentType, Element, Entity, EntityReference, Notation, ProcessingInstruction, SVGElement, Text
All Known Implementing Classes:
HTMLAnchorElement, HTMLAudioElement, HTMLBaseElement, HTMLBodyElement, HTMLButtonElement, HTMLCanvasElement, HTMLDocument, HTMLElement, HTMLFormElement, HTMLHeadElement, HTMLHtmlElement, HTMLIFrameElement, HTMLImageElement, HTMLInputElement, HTMLLinkElement, HTMLMediaElement, HTMLMetaElement, HTMLOptionElement, HTMLScriptElement, HTMLSelectElement, HTMLSourceElement, HTMLTextAreaElement, HTMLTitleElement, HTMLVideoElement

public interface Node extends org.teavm.jso.JSObject
  • Field Details

  • Method Details

    • getNodeName

      String getNodeName()
    • getNodeValue

      String getNodeValue()
    • setNodeValue

      void setNodeValue(String value)
    • getNodeType

      short getNodeType()
    • getParentNode

      Node getParentNode()
    • getChildNodes

      NodeList<Node> getChildNodes()
    • getFirstChild

      Node getFirstChild()
    • getLastChild

      Node getLastChild()
    • getPreviousSibling

      Node getPreviousSibling()
    • getNextSibling

      Node getNextSibling()
    • getAttributes

      NamedNodeMap<Attr> getAttributes()
    • insertBefore

      Node insertBefore(Node newChild, Node refChild)
    • replaceChild

      Node replaceChild(Node newChild, Node oldChild)
    • removeChild

      Node removeChild(Node oldChild)
    • appendChild

      Node appendChild(Node newChild)
    • hasChildNodes

      boolean hasChildNodes()
    • hasChildNodesJS

      boolean hasChildNodesJS()
    • cloneNode

      Node cloneNode(boolean deep)
    • normalize

      void normalize()
    • isSupported

      boolean isSupported(String feature, String version)
    • getNamespaceURI

      String getNamespaceURI()
    • getPrefix

      String getPrefix()
    • setPrefix

      void setPrefix(String prefix)
    • getLocalName

      String getLocalName()
    • hasAttributes

      boolean hasAttributes()
    • getTextContent

      String getTextContent()
    • setTextContent

      void setTextContent(String textContent)
    • getOwnerDocument

      Document getOwnerDocument()
    • delete

      default void delete()