Uses of Class
net.sf.infrared.agent.util.TreeNode

Packages that use TreeNode
net.sf.infrared.agent   
net.sf.infrared.agent.util   
net.sf.infrared.web.ui   
 

Uses of TreeNode in net.sf.infrared.agent
 

Methods in net.sf.infrared.agent that return TreeNode
 TreeNode OperationTree.getHead()
          Gets the ApiTime that represents the start method of the operation.
 TreeNode AggregateOperationTree.getHead()
          Gets the TreeNode representing the API from which this operation started
 

Methods in net.sf.infrared.agent with parameters of type TreeNode
 void OperationTree.setHead(TreeNode head)
           
 void AggregateOperationTree.mergeSubTreesRecursively(List subTrees, TreeNode mergedTree, IdMapper idMapper)
           
 

Constructors in net.sf.infrared.agent with parameters of type TreeNode
AggregateOperationTree(TreeNode root)
           
 

Uses of TreeNode in net.sf.infrared.agent.util
 

Methods in net.sf.infrared.agent.util that return TreeNode
static TreeNode TreeNode.createTreeNode(Object value)
          Factory method to create tree nodes
 TreeNode TreeNode.getParent()
          Returns the parent node
 TreeNode TreeNode.find(Object value)
           
 TreeNode Tree.getRoot()
           
 TreeNode Tree.find(Object value)
           
 

Methods in net.sf.infrared.agent.util with parameters of type TreeNode
 void TreeNode.addChild(TreeNode child)
          Add a new child node to the end of the list
 boolean TreeNode.removeChild(TreeNode child)
           
 void TreeNode.setParent(TreeNode parentNode)
          Set the parent for this node
 void Tree.setRoot(TreeNode root)
           
 void TestNodeVisitor.visit(TreeNode node)
           
 void NodeVisitor.visit(TreeNode node)
          Visiting a node of the tree
 

Constructors in net.sf.infrared.agent.util with parameters of type TreeNode
Tree(TreeNode root)
          Constructor that creates a Tree with a specified Node as root Node
 

Uses of TreeNode in net.sf.infrared.web.ui
 

Methods in net.sf.infrared.web.ui with parameters of type TreeNode
protected static void ViewUtil.getJDBCSummary(TreeNode node, List list)
           
static List TreeUtil.subTreeFinder(TreeNode treeNode, String apiName, List subTrees)