Uses of Class
org.apache.pivot.xml.Node

Packages that use Node
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
 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
 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
 Comparator<Node> Element.getComparator()
           
 ListenerList<ListListener<Node>> Element.getListListeners()
          Returns the element's listener list.
 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
 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.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
 void Element.setComparator(Comparator<Node> comparator)