FileDocCategorySizeDatePackage
ParserSharedInputState.javaAPI DocGlassfish v2 API733Wed Aug 30 15:34:10 BST 2006persistence.antlr

ParserSharedInputState

public class ParserSharedInputState extends Object
This object contains the data associated with an input stream of tokens. Multiple parsers share a single ParserSharedInputState to parse the same stream of tokens.

Fields Summary
protected TokenBuffer
input
Where to get token objects
public int
guessing
Are we guessing (guessing>0)?
protected String
filename
What file (if known) caused the problem?
Constructors Summary
Methods Summary
public voidreset()


       
         guessing = 0;
         filename = null;
         input.reset();