Package de.mirkosertic.bytecoder.api.web
Interface Node
-
- All Superinterfaces:
EventTarget
,OpaqueReferenceType
- All Known Subinterfaces:
CharacterData
,Comment
,Document
,Element
,HTMLAudioElement
,HTMLButton
,HTMLCanvasElement
,HTMLDocument
,HTMLElement
,HTMLImageElement
,HTMLTextAreaElement
,HTMLWebGLCanvasElement
,TextNode
public interface Node extends EventTarget
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
appendChild(Node aNode)
java.lang.String
baseURI()
NodeList
childNodes()
Node
cloneNode()
int
compareDocumentPosition(Node aOtherNode)
boolean
contains(Node aOtherNode)
Node
firstChild()
Node
getRootNode()
boolean
hasChildNodes()
void
insertBefore(Node aNewNode, Node aReferenceNode)
Node
lastChild()
Node
nextSibling()
java.lang.String
nodeName()
int
nodeType()
Document
ownerDocument()
Element
parentElement()
Node
parentNode()
Node
previousSibling()
void
removeAll()
void
removeChild(Node aChildNode)
void
replaceChild(Node aNewChild, Node aOldChild)
java.lang.String
textContent()
void
textContent(java.lang.String aNewValue)
-
Methods inherited from interface de.mirkosertic.bytecoder.api.web.EventTarget
addEventListener, dispatchEvent
-
-
-
-
Method Detail
-
childNodes
NodeList childNodes()
-
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()
-
removeChild
void removeChild(Node aChildNode)
-
removeAll
void removeAll()
-
-