All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class javaParse.LLTreeMaker

java.lang.Object
   |
   +----javaParse.LLTreeMaker

public class LLTreeMaker
extends Object
A class that parses string and creates a parse tree for LL. Allows user to iterate through the tree in the order in which it was created. public TreeMaker(ParseTable, String) public void step() public void first() public boolean isDone() public ListNode current()


Constructor Index

 o LLTreeMaker(ParseTable, String)

Method Index

 o current()
 o first()
 o isDone()
 o step()

Constructors

 o LLTreeMaker
 public LLTreeMaker(ParseTable tble,
                    String str)
Parameters:
tble - the parse table of the grammar
str - the input string that will be parsed

Methods

 o step
 public void step()
 o first
 public void first()
 o current
 public LLListNode current()
 o isDone
 public boolean isDone()

All Packages  Class Hierarchy  This Package  Previous  Next  Index