Uses of Class
javancss.parser.debug.Token

Packages that use Token
javancss.parser.debug   
 

Uses of Token in javancss.parser.debug
 

Fields in javancss.parser.debug declared as Token
private  Token JavaParserDebug._tmpResultToken
          Argh, too much of a state machine.
private  Token JavaParserDebug._tmpToken
           
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
(package private)  Token JavaParserDebug.JJCalls.first
           
private  Token JavaParserDebug.jj_lastpos
           
 Token JavaParserDebug.jj_nt
          Next token.
private  Token JavaParserDebug.jj_scanpos
           
 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.
 Token JavaParserDebug.token
          Current token.
 

Methods in javancss.parser.debug that return Token
 Token JavaParserDebug.getNextToken()
          Get the next Token.
 Token JavaParserDebugTokenManager.getNextToken()
          Get the next Token.
 Token JavaParserDebug.getToken(int index)
          Get the specific Token.
private  Token JavaParserDebug.jj_consume_token(int kind)
           
protected  Token JavaParserDebugTokenManager.jjFillToken()
           
static Token Token.newToken(int ofKind)
           
static Token Token.newToken(int ofKind, java.lang.String image)
          Returns a new Token object, by default.
 

Methods in javancss.parser.debug with parameters of type Token
private static java.lang.String ParseException.initialise(Token currentToken, int[][] expectedTokenSequences, java.lang.String[] tokenImage)
          It uses "currentToken" and "expectedTokenSequences" to generate a parse error message and returns it.
(package private)  void JavaParserDebugTokenManager.SkipLexicalActions(Token matchedToken)
           
private  void JavaParserDebug.trace_scan(Token t1, int t2)
           
private  void JavaParserDebug.trace_token(Token t, java.lang.String where)
           
 

Constructors in javancss.parser.debug with parameters of type Token
ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
          This constructor is used by the method "generateParseException" in the generated parser.