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 classElementNode class representing an XML element.classTextNodeClass representing an XML text node.Methods in org.apache.pivot.xml that return Node Modifier and Type Method Description NodeElement. get(int index)Returns the node at the given index.NodeElement. 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 intElement. add(Node node)Adds a node to this element.intElement. indexOf(Node node)Determines the index of the given node within this element.voidElement. insert(Node node, int index)Inserts a node at a specific location within this element.voidNodeListener.Listeners. parentChanged(Node node, Element previousParent)voidNodeListener. parentChanged(Node node, Element previousParent)Called when a node's parent has changed.intElement. remove(Node node)Removes a node from this element.NodeElement. update(int index, Node node)Method parameters in org.apache.pivot.xml with type arguments of type Node Modifier and Type Method Description voidElement. setComparator(java.util.Comparator<Node> comparator)
-