Uses of Interface
com.dyuproject.util.xml.Node

Packages that use Node
com.dyuproject.util.xml   
 

Uses of Node in com.dyuproject.util.xml
 

Classes in com.dyuproject.util.xml that implement Node
 class SimpleNode
          Simple node that persists the attributes in a Map, text content in a StringBuilder and child nodes in a List.
 

Methods in com.dyuproject.util.xml that return Node
 Node Node.getFirstNode()
          Gets the first child node.
 Node SimpleNode.getFirstNode()
           
 Node Node.getLastNode()
          Gets the last child node.
 Node SimpleNode.getLastNode()
           
 Node SimpleHandler.getNode()
           
 Node Node.getNode(int index)
          Gets a child node from the given index.
 Node SimpleNode.getNode(int index)
           
 Node Node.getNode(String name)
          Gets the first child node with the given name.
 Node SimpleNode.getNode(String name)
           
 Node Node.getNode(String name, int startingIndex)
          Gets the first child node with the given name, starting at startingIndex.
 Node SimpleNode.getNode(String name, int startingIndex)
           
 Node Node.getNodeFromLast(String name)
          Gets the first child node with the given name, starting from the last.
 Node SimpleNode.getNodeFromLast(String name)
           
 Node Node.getNodeFromLast(String name, int startingIndex)
          Gets the first child node with the given name, starting from the last with the specified startingIndex.
 Node SimpleNode.getNodeFromLast(String name, int startingIndex)
           
 Node Node.getParent()
          Gets the parent.
 Node SimpleNode.getParent()
           
 Node Node.removeNode(int index)
          Removes a child node from the given index.
 Node SimpleNode.removeNode(int index)
           
 

Methods in com.dyuproject.util.xml that return types with arguments of type Node
 List<Node> Node.getNodes()
          Gets the list of child nodes.
 List<Node> SimpleNode.getNodes()
           
 List<Node> Node.getNodes(String name)
          Gets the list of child nodes with the given name (filtered).
 List<Node> SimpleNode.getNodes(String name)
           
 

Methods in com.dyuproject.util.xml with parameters of type Node
 void Node.addNode(Node node)
          Adds a child node.
 void SimpleNode.addNode(Node node)
           
 boolean Node.removeNode(Node node)
          Removes a child node.
 boolean SimpleNode.removeNode(Node node)
           
 void Node.setParent(Node parent)
          Sets the parent.
 void SimpleNode.setParent(Node parent)
           
 

Constructors in com.dyuproject.util.xml with parameters of type Node
SimpleNode(String name, Node parent)
           
SimpleNode(String name, Node parent, String namespace)
           
 



Copyright © 2008-2013. All Rights Reserved.