Uses of Interface
prefuse.data.tree.DeclarativeTree

Packages that use DeclarativeTree
prefuse.action.layout.graph Action modules for computing the layout of graph or tree structured data. 
prefuse.data Table, Graph, and Tree data structures for organizing data. 
prefuse.data.tree   
prefuse.data.util Utility classes for supporting prefuse data structures, including indexes, iterables, filters, and column projections. 
prefuse.visual Classes for representing and storing VisualItems. 
 

Uses of DeclarativeTree in prefuse.action.layout.graph
 

Methods in prefuse.action.layout.graph that return DeclarativeTree
 DeclarativeTree<NodeItem<?,?>,EdgeItem<?,?>> DeclarativeTreeLayout.getTree()
           
 

Methods in prefuse.action.layout.graph with parameters of type DeclarativeTree
 void DeclarativeTreeLayout.setTree(DeclarativeTree<NodeItem<?,?>,EdgeItem<?,?>> tree)
           
 

Uses of DeclarativeTree in prefuse.data
 

Classes in prefuse.data that implement DeclarativeTree
 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.
 class Tree<T extends Tuple<?>,N extends Node<N,E>,E extends Edge<N,E>>
          Graph subclass that models a tree structure of hierarchical parent-child relationships.
 

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

Uses of DeclarativeTree in prefuse.data.tree
 

Classes in prefuse.data.tree that implement DeclarativeTree
 class AbstractDeclarativeTree<N extends Node<N,E>,E extends Edge<N,E>>
          This is a base implementation for a declarative tree.
 class FilteredDeclarativeTree<N extends Node<N,E>,E extends Edge<N,E>>
          Allows a tree subset to be defined.
 class NodeBasedDeclarativeTree<N extends Node<N,E>,E extends Edge<N,E>>
          Implements a DeclarativeTree using the supplied node as the root node of the tree.
 

Uses of DeclarativeTree in prefuse.data.util
 

Constructors in prefuse.data.util with parameters of type DeclarativeTree
TreeNodeIterator(DeclarativeTree<N,?> tree)
          Create a new TreeNodeIterator over the given subtree.
TreeNodeIterator(DeclarativeTree<N,?> tree, TreeNodeIterator.TraversalMode traversalMode)
          Create a new TreeNodeIterator over the given subtree.
 

Uses of DeclarativeTree in prefuse.visual
 

Classes in prefuse.visual that implement DeclarativeTree
 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