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 voidappendChild(Node aNode)java.lang.StringbaseURI()NodeListchildNodes()NodecloneNode()intcompareDocumentPosition(Node aOtherNode)booleancontains(Node aOtherNode)NodefirstChild()NodegetRootNode()booleanhasChildNodes()voidinsertBefore(Node aNewNode, Node aReferenceNode)NodelastChild()NodenextSibling()java.lang.StringnodeName()intnodeType()DocumentownerDocument()ElementparentElement()NodeparentNode()NodepreviousSibling()voidremoveAll()voidremoveChild(Node aChildNode)voidreplaceChild(Node aNewChild, Node aOldChild)java.lang.StringtextContent()voidtextContent(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()
-
-