Uses of Class
com.japisoft.editix.editor.jsx.domapi.Node
-
Uses of Node in com.japisoft.editix.editor.jsx.domapi
Subclasses of Node in com.japisoft.editix.editor.jsx.domapi Modifier and Type Class Description class
Attr
The Attr interface represents one of an element's attributes as an object.class
Document
The Document Object Model (DOM) connects web pages to scripts or programming languages by representing the structure of a document The DOM represents a document with a logical tree.class
Element
Element is the most general base class from which all element objects (i.e.class
Text
The Text interface represents a text node in a DOM tree.Fields in com.japisoft.editix.editor.jsx.domapi declared as Node Modifier and Type Field Description Node
Node. firstChild
Node
Node. lastChild
Node
Node. parentNode
Methods in com.japisoft.editix.editor.jsx.domapi that return Node Modifier and Type Method Description Node
NodeList. addNode(Node node)
Node
Node. appendChild(Node newChild)
Node
Node. cloneNode()
Node
Document. createNode(org.w3c.dom.Node node)
Node
Document. importNode(Node node, boolean deepMode)
Node
Node. insertBefore(Node newNode, Node refNode)
Node
NodeList. item(int index)
Methods in com.japisoft.editix.editor.jsx.domapi with parameters of type Node Modifier and Type Method Description Node
NodeList. addNode(Node node)
Node
Node. appendChild(Node newChild)
java.lang.Object
Document. evaluate(java.lang.String xpathExpression, Node contextNode, java.lang.Object resolver, short type, java.lang.Object result)
Node
Document. importNode(Node node, boolean deepMode)
Node
Node. insertBefore(Node newNode, Node refNode)
boolean
Node. isEqualNode(Node otherNode)
boolean
Node. isSameNode(Node otherNode)
void
Node. removeChild(Node child)
void
Node. replaceChild(Node newChild, Node oldChild)