Uses of Interface
org.biojavax.bio.phylo.tree.Node

Packages that use Node
org.biojavax.bio.phylo.tree Classes to represent phylogenetic tree concepts. 
 

Uses of Node in org.biojavax.bio.phylo.tree
 

Subinterfaces of Node in org.biojavax.bio.phylo.tree
 interface RootedTreeNode
           
 

Classes in org.biojavax.bio.phylo.tree that implement Node
 class DefaultRootedTreeNode
           
 

Methods in org.biojavax.bio.phylo.tree that return Node
 Node Branch.getNodeA()
           
 Node DefaultBranch.getNodeA()
           
 Node Branch.getNodeB()
           
 Node DefaultBranch.getNodeB()
           
 Node Branch.getOtherNode(Node node)
           
 Node DefaultBranch.getOtherNode(Node node)
           
 

Methods in org.biojavax.bio.phylo.tree with parameters of type Node
 void DefaultRootedTreeNode.addChild(Node node)
          Calls addBranch(new SimpleBranch(this, node)).
 void RootedTreeNode.addChild(Node node)
           
 Node Branch.getOtherNode(Node node)
           
 Node DefaultBranch.getOtherNode(Node node)
           
 

Constructors in org.biojavax.bio.phylo.tree with parameters of type Node
DefaultBranch(Node nodeA, Node nodeB)
           
WeightedBranch(Node nodeA, Node nodeB, double weight)