Uses of Interface
edu.uci.ics.jung.graph.Tree

Packages that use Tree
edu.uci.ics.jung.graph Interfaces for the JUNG graph types, and some representative implementations. 
edu.uci.ics.jung.graph.util Utility interfaces and classes for the JUNG API. 
 

Uses of Tree in edu.uci.ics.jung.graph
 

Classes in edu.uci.ics.jung.graph that implement Tree
 class DelegateTree<V,E>
          An implementation of Tree that delegates to a specified instance of DirectedGraph.
 class OrderedKAryTree<V,E>
          An implementation of Tree in which each vertex has <= k children.
 

Methods in edu.uci.ics.jung.graph that return types with arguments of type Tree
static
<V,E> org.apache.commons.collections15.Factory<Tree<V,E>>
DelegateTree.getFactory()
          Returns a Factory that creates an instance of this graph type.
 Collection<Tree<V,E>> OrderedKAryTree.getTrees()
           
 Collection<Tree<V,E>> DelegateTree.getTrees()
           
 Collection<Tree<V,E>> DelegateForest.getTrees()
           
 Collection<Tree<V,E>> Forest.getTrees()
          Returns a view of this graph as a collection of Tree instances.
 

Methods in edu.uci.ics.jung.graph with parameters of type Tree
 void DelegateForest.addTree(Tree<V,E> tree)
          Adds tree to this graph as an element of this forest.
 

Uses of Tree in edu.uci.ics.jung.graph.util
 

Methods in edu.uci.ics.jung.graph.util that return Tree
static
<V,E> Tree<V,E>
TreeUtils.getSubTree(Forest<V,E> forest, V root)
          Returns the subtree of tree which is rooted at root as a Forest.
 

Methods in edu.uci.ics.jung.graph.util with parameters of type Tree
static
<V,E> edu.uci.ics.jung.graph.util.Graphs.SynchronizedTree<V,E>
Graphs.synchronizedTree(Tree<V,E> tree)
          Returns a synchronized Tree backed by the passed Tree.
static
<V,E> edu.uci.ics.jung.graph.util.Graphs.UnmodifiableTree<V,E>
Graphs.unmodifiableTree(Tree<V,E> tree)
          Returns an unmodifiable Tree backed by the passed tree.
 



Copyright © 2009. All Rights Reserved.