Uses of Interface
com.teamdev.jxbrowser.dom.Node
Package
Description
Provides the interfaces and classes for the Document Object Model (DOM).
-
Uses of Node in com.teamdev.jxbrowser.dom
Modifier and TypeInterfaceDescriptioninterface
An HTML DOM attribute.interface
An HTML DOM document.interface
An HTML DOM element.interface
An HTML DOM form control element such as input, select, textarea, etc.interface
An HTML DOM form element.interface
An HTML DOM frame or iframe element.interface
An HTML DOM image element.interface
An HTML DOM input element.interface
An HTML DOM option element.interface
An HTML DOM select element.interface
An HTML DOM textarea element.Modifier and TypeMethodDescriptionDocument.createTextNode()
Creates and returns aNode
object representing a new text node with an empty node value.Document.createTextNode
(String text) Creates and returns aNode
object representing a new text node initialized with the giventext
value.Modifier and TypeMethodDescriptionXPathResult.asSingleNode()
Returns anOptional
that contains the XPath result represented as a single node or an emptyOptional
if it does not exist.XPathResult.asSnapshotNodes()
Returns the XPath result represented as an immutable list of the snapshot nodes.Node.children()
Returns an immutable list of all children of this node.XPathResult.iterateNext()
Node.nextSibling()
Returns anOptional
that contains the next node in the document tree if such a node exists, otherwise returns an emptyOptional
.PointInspection.node()
Returns theNode
at the point.Node.parent()
Returns anOptional
that contains the parent of this node.Node.previousSibling()
Returns anOptional
that contains the previous node in the document tree if such a node exists, otherwise returns an emptyOptional
.Modifier and TypeMethodDescriptionboolean
Node.appendChild
(Node childNode) Adds the givennode
as a child of the current node to the end of its children list.Node.compareDocumentPosition
(Node otherNode) Compares position of the current node against another node in a DOM tree.boolean
Node.insertChild
(Node node, Node beforeNode) Inserts the givennode
before the givenbeforeNode
as a child of the current node.boolean
Node.removeChild
(Node childNode) Removes the givenchildNode
of the current node from the DOM.boolean
Node.replaceChild
(Node newNode, Node oldNode) Replaces the given childoldNode
of the current node with the givennewNode
.