Uses of Interface
edu.ksu.cis.viewer.TreeInterface

Uses of TreeInterface in edu.ksu.cis.viewer
 

Classes in edu.ksu.cis.viewer that implement TreeInterface
 class PatriciaTrie
          An immutable Patricia trie that can draw itself.
 class Trie
          An immutable trie that can draw itself.
 

Methods in edu.ksu.cis.viewer that return TreeInterface
 TreeInterface[] Trie.getChildren()
          Returns the children of this Trie.
 TreeInterface[] TreeInterface.getChildren()
          Returns the children of the tree.
 TreeInterface[] PatriciaTrie.getChildren()
          Returns the children of this PatriciaTrie.
 

Constructors in edu.ksu.cis.viewer with parameters of type TreeInterface
TreeFrame(TreeInterface t, int maxHeight, Colorizer c)
          Contstructs a TreeFrame displaying the given tree.
TreeFrame(TreeInterface t, int maxHeight)
          Contstructs a TreeFrame displaying the given tree.
TreeFrame(TreeInterface t, int maxHeight, Colorizer c, Font fnt)
          Constructs a TreeFrame displaying the given tree using the given Font.
TreeFrame(TreeInterface t, int maxHeight, Font fnt)
          Constructs a TreeFrame displaying the given tree using the given Font.
TreeDrawing(TreeInterface tree, int maxHeight)
          Constructs a drawing of the given tree.
TreeDrawing(TreeInterface tree, int maxHeight, Colorizer col)
          Constructs a colorized drawing of the given tree.