Uses of Class
de.jstacs.models.phylo.PhyloNode

Packages that use PhyloNode
de.jstacs.models.phylo   
 

Uses of PhyloNode in de.jstacs.models.phylo
 

Methods in de.jstacs.models.phylo that return PhyloNode
 PhyloNode PhyloNode.clone()
           
 PhyloNode PhyloTree.getRoot()
          This method returns the root node of the tree
 

Methods in de.jstacs.models.phylo that return types with arguments of type PhyloNode
 ArrayList<PhyloNode> PhyloTree.getAllLeafs()
          This method returns a list of PhyloNodes that represent the leafs of the tree
 ArrayList<PhyloNode> PhyloNode.getAllLeafs()
          This method returns a list of PhyloNodes that are leafs in the subtree starting from this instance
 ArrayList<PhyloNode> PhyloNode.getChildrenNodes()
          This method returns a list of PhyloNodes that are children of this instance
 

Methods in de.jstacs.models.phylo with parameters of type PhyloNode
 void PhyloNode.addChild(PhyloNode node)
          This method adds a children node to the current instance
 

Constructors in de.jstacs.models.phylo with parameters of type PhyloNode
PhyloTree(String name, PhyloNode root)
          Construct an instance of the class PhyloTree