Uses of Class
com.inxar.syntacs.util.Tree

Packages that use Tree
com.inxar.syntacs.analyzer Defines classes which support lexical and syntactic analysis. 
com.inxar.syntacs.util Defines classes and utilities which implement fundamental abstract data types. 
 

Uses of Tree in com.inxar.syntacs.analyzer
 

Methods in com.inxar.syntacs.analyzer with parameters of type Tree
 void ObjectSymbol.toTree(Tree t)
           
 void ConstantSymbol.toTree(Tree t)
           
 void ListSymbol.toTree(Tree t)
           
 void ArraySymbol.toTree(Tree t)
           
 void CharSymbol.toTree(Tree t)
           
 

Uses of Tree in com.inxar.syntacs.util
 

Subclasses of Tree in com.inxar.syntacs.util
static class Tree.Box
          Experimental subclass of Tree which tries to do more advanced tree layout.
 

Methods in com.inxar.syntacs.util that return Tree
 Tree Tree.add(String name)
           
 Tree Tree.child(int i)
           
 Tree Tree.parent()
           
 Tree Tree.Box.add(String name)
           
 

Methods in com.inxar.syntacs.util with parameters of type Tree
 void Arboreal.toTree(Tree t)
          Writes state to the given Tree.
 

Constructors in com.inxar.syntacs.util with parameters of type Tree
Tree(Tree parent, String name)