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 Visualization.addTree(java.lang.String group, Tree tree)
          Adds a tree to this visualization, using the given data group name.
 VisualTree Visualization.addTree(java.lang.String group, Tree tree, Predicate filter)
          Adds a tree to this visualization, using the given data group name.
 VisualTree Visualization.addTree(java.lang.String group, Tree 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
          Special tree instance for storing a spanning tree over a graph instance.
 

Methods in prefuse.data that return Tree
 Tree Tree.getSpanningTree()
          Returns a spanning tree over this tree.
 Tree Graph.getSpanningTree()
          Return the current spanning tree over this graph.
 Tree Tree.getSpanningTree(Node root)
          Returns a spanning tree over this tree, rooted at the given root.
 Tree Graph.getSpanningTree(Node root)
          Returns a spanning tree rooted at the specified node.
 

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 GraphLib.getBalancedTree(int breadth, int depth)
          Returns a balanced tree of the requested breadth and depth.
static Tree 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 GraphLib.getLeftDeepTree(int depth)
          Returns a left deep binary tree
static Tree 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
          A visual abstraction of a tree data structure.
 



Copyright © 2007 Regents of the University of California