Package org.teavm.jso.dom.xml
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 Summary
FieldsModifier and TypeFieldDescriptionstatic final short
static final short
static final short
static final short
static final short
static final short
static final short
static final short
static final short
static final short
static final short
static final short
-
Method Summary
Modifier and TypeMethodDescriptionappendChild
(Node newChild) cloneNode
(boolean deep) default void
delete()
short
boolean
boolean
boolean
insertBefore
(Node newChild, Node refChild) boolean
isSupported
(String feature, String version) void
removeChild
(Node oldChild) replaceChild
(Node newChild, Node oldChild) void
setNodeValue
(String value) void
void
setTextContent
(String textContent) Methods inherited from interface org.teavm.jso.JSObject
cast
-
Field Details
-
ELEMENT_NODE
static final short ELEMENT_NODE- See Also:
-
ATTRIBUTE_NODE
static final short ATTRIBUTE_NODE- See Also:
-
TEXT_NODE
static final short TEXT_NODE- See Also:
-
CDATA_SECTION_NODE
static final short CDATA_SECTION_NODE- See Also:
-
ENTITY_REFERENCE_NODE
static final short ENTITY_REFERENCE_NODE- See Also:
-
ENTITY_NODE
static final short ENTITY_NODE- See Also:
-
PROCESSING_INSTRUCTION_NODE
static final short PROCESSING_INSTRUCTION_NODE- See Also:
-
COMMENT_NODE
static final short COMMENT_NODE- See Also:
-
DOCUMENT_NODE
static final short DOCUMENT_NODE- See Also:
-
DOCUMENT_TYPE_NODE
static final short DOCUMENT_TYPE_NODE- See Also:
-
DOCUMENT_FRAGMENT_NODE
static final short DOCUMENT_FRAGMENT_NODE- See Also:
-
NOTATION_NODE
static final short NOTATION_NODE- See Also:
-
-
Method Details
-
getNodeName
String getNodeName() -
getNodeValue
String getNodeValue() -
setNodeValue
-
getNodeType
short getNodeType() -
getParentNode
Node getParentNode() -
getChildNodes
-
getFirstChild
Node getFirstChild() -
getLastChild
Node getLastChild() -
getPreviousSibling
Node getPreviousSibling() -
getNextSibling
Node getNextSibling() -
getAttributes
NamedNodeMap<Attr> getAttributes() -
insertBefore
-
replaceChild
-
removeChild
-
appendChild
-
hasChildNodes
boolean hasChildNodes() -
hasChildNodesJS
boolean hasChildNodesJS() -
cloneNode
-
normalize
void normalize() -
isSupported
-
getNamespaceURI
String getNamespaceURI() -
getPrefix
String getPrefix() -
setPrefix
-
getLocalName
String getLocalName() -
hasAttributes
boolean hasAttributes() -
getTextContent
String getTextContent() -
setTextContent
-
getOwnerDocument
Document getOwnerDocument() -
delete
default void delete()
-