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

Packages that use Tree
edu.uci.ics.jung.algorithms.layout Algorithms for assigning 2D coordinates (typically used for graph visualizations) to vertices. 
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.algorithms.layout
 

Constructors in edu.uci.ics.jung.algorithms.layout with parameters of type Tree
BalloonLayout(Tree<V,E> g)
           
RadialTreeLayout(Tree<V,E> g)
           
 

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
 Collection<Tree<V,E>> Forest.getTrees()
          Returns a view of this graph as a collection of Tree instances.
 Collection<Tree<V,E>> DelegateForest.getTrees()
           
 Collection<Tree<V,E>> DelegateTree.getTrees()
           
 Collection<Tree<V,E>> OrderedKAryTree.getTrees()
           
 

Methods in edu.uci.ics.jung.graph with parameters of type Tree
 void DelegateForest.addTree(Tree<V,E> tree)
           
 

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 © 2008 null. All Rights Reserved.