/** * Snapshot of the current parse configuration * * @author Nobo Komagata * @version 5/30/03 */ public class Configuration { public ParseStack stack; public Input input; /** * Constructor for objects of class Configuration */ public Configuration(ParseStack stack, Input input) { this.stack = stack; this.input = input; } }