Uses of Class
prefuse.data.Tree

Packages that use Tree
prefuse The top-level Visualization and Display classes, as well as Constants used throughout the toolkit. 
prefuse.data Table, Graph, and Tree data structures for organizing data. 
prefuse.data.io Input/output classes for reading and writing data from formatted files. 
prefuse.util Utility classes for use by both the toolkit and applications, including color and font support. 
prefuse.util.ui Utility classes facilitating the generation and composition of user interface components. 
prefuse.visual Classes for representing and storing VisualItems. 
 

Uses of Tree in prefuse
 

Methods in prefuse with parameters of type Tree
 VisualTree<VisualItem<?>,TableNodeItem,TableEdgeItem> Visualization.addTree(java.lang.String group, Tree<?,?,?> tree)
          Adds a tree to this visualization, using the given data group name.
 VisualTree<VisualItem<?>,TableNodeItem,TableEdgeItem> Visualization.addTree(java.lang.String group, Tree<?,?,?> tree, Predicate filter)
          Adds a tree to this visualization, using the given data group name.
<N extends Node<N,E>,E extends Edge<N,E>>
VisualTree<VisualItem<?>,TableNodeItem,TableEdgeItem>
Visualization.addTree(java.lang.String group, Tree<?,N,E> tree, Predicate filter, Schema nodeSchema, Schema edgeSchema)
          Adds a tree to this visualization, using the given data group name.
 

Uses of Tree in prefuse.data
 

Subclasses of Tree in prefuse.data
 class SpanningTree<T extends Tuple<?>,N extends Node<N,E>,E extends Edge<N,E>>
          Special tree instance for storing a spanning tree over a graph instance.
 

Methods in prefuse.data that return Tree
static Tree<TableTuple<?>,TableNode,TableEdge> Tree.createTree()
          Create a new, empty Tree.
 

Uses of Tree in prefuse.data.io
 

Methods in prefuse.data.io that return Tree
 Tree<?,?,?> TreeMLReader.TreeMLHandler.getTree()
           
 

Uses of Tree in prefuse.util
 

Methods in prefuse.util that return Tree
static Tree<TableTuple<?>,TableNode,TableEdge> GraphLib.getBalancedTree(int breadth, int depth)
          Returns a balanced tree of the requested breadth and depth.
static Tree<TableTuple<?>,TableNode,TableEdge> GraphLib.getDiamondTree(int b, int d1, int d2)
          Create a diamond tree, with a given branching factor at each level, and depth levels for the two main branches.
static Tree<TableTuple<?>,TableNode,TableEdge> GraphLib.getLeftDeepTree(int depth)
          Returns a left deep binary tree
static Tree<TableTuple<?>,TableNode,TableEdge> GraphLib.getRightDeepTree(int depth)
          Returns a right deep binary tree
 

Uses of Tree in prefuse.util.ui
 

Methods in prefuse.util.ui that return Tree
 Tree JPrefuseTree.getTree()
          Return the backing Tree instance.
 

Methods in prefuse.util.ui with parameters of type Tree
static javax.swing.JFrame JPrefuseTree.showTreeWindow(Tree t, java.lang.String labelField)
          Create a new window displaying the contents of the input Tree as a Swing JTree.
 

Constructors in prefuse.util.ui with parameters of type Tree
JPrefuseTree(Tree t, java.lang.String labelField)
          Create a new JPrefuseTree.
 

Uses of Tree in prefuse.visual
 

Subclasses of Tree in prefuse.visual
 class VisualTree<T extends VisualItem<?>,N extends NodeItem<N,E>,E extends EdgeItem<N,E>>
          A visual abstraction of a tree data structure.
 



Copyright © 2008 Regents of the University of California