Uses of Interface
com.teamdev.jxbrowser.dom.Node
Packages that use Node
Package
Description
Provides the interfaces and classes for the Document Object Model (DOM).
-
Uses of Node in com.teamdev.jxbrowser.dom
Subinterfaces of Node in com.teamdev.jxbrowser.domModifier and TypeInterfaceDescriptioninterfaceAn HTML DOM attribute.interfaceAn HTML DOM document.interfaceAn HTML DOM element.interfaceAn HTML DOM form control element such as input, select, textarea, etc.interfaceAn HTML DOM form element.interfaceAn HTML DOM frame or iframe element.interfaceAn HTML DOM image element.interfaceAn HTML DOM input element.interfaceAn HTML DOM option element.interfaceAn HTML DOM select element.interfaceAn HTML DOM textarea element.Methods in com.teamdev.jxbrowser.dom that return NodeModifier and TypeMethodDescriptionDocument.createTextNode()Creates and returns aNodeobject representing a new text node with an empty node value.Document.createTextNode(String text) Creates and returns aNodeobject representing a new text node initialized with the giventextvalue.Methods in com.teamdev.jxbrowser.dom that return types with arguments of type NodeModifier and TypeMethodDescriptionXPathResult.asSingleNode()Returns anOptionalthat contains the XPath result represented as a single node or an emptyOptionalif 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 anOptionalthat contains the next node in the document tree if such a node exists, otherwise returns an emptyOptional.PointInspection.node()Returns theNodeat the point.Node.parent()Returns anOptionalthat contains the parent of this node.Node.previousSibling()Returns anOptionalthat contains the previous node in the document tree if such a node exists, otherwise returns an emptyOptional.Methods in com.teamdev.jxbrowser.dom with parameters of type NodeModifier and TypeMethodDescriptionbooleanNode.appendChild(Node childNode) Adds the givennodeas 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.booleanNode.insertChild(Node node, Node beforeNode) Inserts the givennodebefore the givenbeforeNodeas a child of the current node.booleanNode.removeChild(Node childNode) Removes the givenchildNodeof the current node from the DOM.booleanNode.replaceChild(Node newNode, Node oldNode) Replaces the given childoldNodeof the current node with the givennewNode.