Uses of Class
org.synchronoss.cpo.Node

Packages that use Node
org.synchronoss.cpo   
org.synchronoss.cpo.jdbc   
 

Uses of Node in org.synchronoss.cpo
 

Methods in org.synchronoss.cpo that return Node
static Node Node.createNode(int nodeType)
          This is the factory method for creating Node objects.
 Node Node.getFirstChild()
          Gets the first child node in the linked-list of children.
 Node Node.getNextSibling()
          Gets the next sibling for this node in the linked list of Nodes.
 Node Node.getParentNode()
          Gets the parent node for this node
 Node Node.getPrevSibling()
          Gets the previous sibling for this node in the linked list of Nodes.
 

Methods in org.synchronoss.cpo that return types with arguments of type Node
 java.util.List<Node> Node.getChildList()
           
 

Methods in org.synchronoss.cpo with parameters of type Node
 void Node.addChild(Node node)
          This function adds a child to the linked-list of children for this node.
 void Node.addChildSort(Node node)
          This function adds a child to the linked-list of children for this node.
 void Node.addChildSort(Node node, java.util.Comparator<Node> c)
           
 int Node.compareTo(Node o)
           
protected  int Node.doCompare(Node n1, Node n2, java.util.Comparator<Node> c)
           
 boolean Node.equals(Node o)
           
 void Node.insertParentAfter(Node node)
          Inserts a new Parent Node as a child of this node and moves all pre-existing children to be children of the new Parent Node.
 void Node.insertParentBefore(Node node)
          Inserts a new Parent into the tree structure and adds this node as its child.
 void Node.insertSiblingAfter(Node node)
          Adds a Sibling immediately following this Node.
 void Node.insertSiblingBefore(Node node)
          Inserts a Sibling into the linked list just prior to this Node
 boolean Node.removeChild(Node node)
          Searches for an immediate child node and if found removes it from the linked-list of children.
 void Node.setFirstChild(Node node)
          Sets the first child node in the linked-list of children.
 void Node.setNextSibling(Node node)
          Sets the NextSibling for this node.
 void Node.setParent(Node node)
          Sets the Parent Node for this Node.
 void Node.setPrevSibling(Node node)
          Sets the PrevSibling for this node.
 boolean INodeVisitor.visit(Node node)
          This is called for component elements which have no children
 boolean INodeVisitor.visitBegin(Node node)
          This is called by composite nodes prior to visiting children
 boolean INodeVisitor.visitEnd(Node node)
          This is called by composite nodes after visiting children
 boolean INodeVisitor.visitMiddle(Node node)
          This is called for composite nodes between visiting children
 

Method parameters in org.synchronoss.cpo with type arguments of type Node
 void Node.addChildSort(Node node, java.util.Comparator<Node> c)
           
protected  int Node.doCompare(Node n1, Node n2, java.util.Comparator<Node> c)
           
 

Uses of Node in org.synchronoss.cpo.jdbc
 

Subclasses of Node in org.synchronoss.cpo.jdbc
 class JdbcCpoWhere
          JdbcCpoWhere is an interface for specifying the sort order in which objects are returned from the Datasource.
 

Methods in org.synchronoss.cpo.jdbc with parameters of type Node
 boolean JdbcWhereBuilder.visit(Node node)
          This is called for component elements which have no children
 boolean JdbcWhereBuilder.visitBegin(Node node)
          This is called by composite nodes prior to visiting children
 boolean JdbcWhereBuilder.visitEnd(Node node)
          This is called by composite nodes after visiting children
 boolean JdbcWhereBuilder.visitMiddle(Node node)
          This is called for composite nodes between visiting children
 



Copyright © 2010. All Rights Reserved.