Uses of Class
edu.ksu.cis.projects.bogor.util.javacc.Token

Packages that use Token
edu.ksu.cis.projects.bogor.parser Provides parser for Bogor input language. 
edu.ksu.cis.projects.bogor.util.javacc Provides common JavaCC parser files. 
 

Uses of Token in edu.ksu.cis.projects.bogor.parser
 

Fields in edu.ksu.cis.projects.bogor.parser declared as Token
 Token BogorParser.jj_nt
           
 Token BogorParser.token
           
 

Methods in edu.ksu.cis.projects.bogor.parser that return Token
 Token BogorParser.getNextToken()
           
 Token BogorParserTokenManager.getNextToken()
           
 Token BogorParser.getToken(int index)
           
 Token BogorParser.Id()
           
protected  Token BogorParserTokenManager.jjFillToken()
           
 

Uses of Token in edu.ksu.cis.projects.bogor.util.javacc
 

Fields in edu.ksu.cis.projects.bogor.util.javacc declared as Token
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
 Token Token.next
          A reference to the next regular (non-special) token from the input stream.
 Token Token.specialToken
          This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token.
 

Methods in edu.ksu.cis.projects.bogor.util.javacc that return Token
static Token Token.newToken(int ofKind)
          Returns a new Token object, by default.
 

Constructors in edu.ksu.cis.projects.bogor.util.javacc with parameters of type Token
ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, String[] tokenImageVal)
          This constructor is used by the method "generateParseException" in the generated parser.