Uses of Class
org.apache.pivot.xml.Node
-
Packages that use Node Package Description org.apache.pivot.xml Contains classes that facilitate interaction with an XML DOM. -
-
Uses of Node in org.apache.pivot.xml
Subclasses of Node in org.apache.pivot.xml Modifier and Type Class Description class
Element
Node class representing an XML element.class
TextNode
Class representing an XML text node.Methods in org.apache.pivot.xml that return Node Modifier and Type Method Description Node
Element. get(int index)
Returns the node at the given index.Node
Element. update(int index, Node node)
Methods in org.apache.pivot.xml that return types with arguments of type Node Modifier and Type Method Description java.util.Comparator<Node>
Element. getComparator()
ListenerList<ListListener<Node>>
Element. getListListeners()
java.util.Iterator<Node>
Element. iterator()
Returns an iterator over this elements child nodes.Sequence<Node>
Element. remove(int index, int count)
Removes a range of nodes from this element.Methods in org.apache.pivot.xml with parameters of type Node Modifier and Type Method Description int
Element. add(Node node)
Adds a node to this element.int
Element. indexOf(Node node)
Determines the index of the given node within this element.void
Element. insert(Node node, int index)
Inserts a node at a specific location within this element.void
NodeListener.Listeners. parentChanged(Node node, Element previousParent)
void
NodeListener. parentChanged(Node node, Element previousParent)
Called when a node's parent has changed.int
Element. remove(Node node)
Removes a node from this element.Node
Element. update(int index, Node node)
Method parameters in org.apache.pivot.xml with type arguments of type Node Modifier and Type Method Description void
Element. setComparator(java.util.Comparator<Node> comparator)
-