Uses of Class
org.metaqtl.TreeNode

Packages that use TreeNode
org.metaqtl   
 

Uses of TreeNode in org.metaqtl
 

Fields in org.metaqtl declared as TreeNode
 TreeNode[] TreeNode.children
          Left and right children, or null
 TreeNode[] Tree.nodes
          The nodes of the tree.
 TreeNode TreeNode.parent
          The parent of the node
 TreeNode Tree.root
          The root of the tree.
 

Methods in org.metaqtl that return TreeNode
 TreeNode[] TreeNode.getChildren()
           
 TreeNode Tree.getLeaf(int i)
           
 TreeNode TreeNode.getParent()
           
 TreeNode Tree.getRoot()
           
 

Methods in org.metaqtl with parameters of type TreeNode
 void TreeNode.addChild(TreeNode node)
          Add a child to the node.
 

Constructors in org.metaqtl with parameters of type TreeNode
Tree(TreeNode root)
           
TreeNode(int idx, TreeNode[] children)
          Creates a new instance of TreeNode with the given indice idx and the children of the node.