Uses of Class
com.jeffpalm.javaparser.Token

Packages that use Token
com.jeffpalm.javaparser   
 

Uses of Token in com.jeffpalm.javaparser
 

Fields in com.jeffpalm.javaparser declared as Token
 Token ParseException.currentToken
          This is the last token that has been consumed successfully.
 Token JavaParser.jj_nt
           
 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 JavaParser.token
           
 

Methods in com.jeffpalm.javaparser that return Token
 Token JavaParserTokenManager.getNextToken()
           
 Token JavaParser.getNextToken()
           
 Token SimpleNode.getSpecial(java.lang.String key)
          Gets the special associated with a particular key
 Token NamedToken.getToken()
          Return the token
 Token JavaParser.getToken(int index)
           
protected  Token JavaParserTokenManager.jjFillToken()
           
static Token Token.newToken(int ofKind)
          Returns a new Token object, by default.
 

Methods in com.jeffpalm.javaparser with parameters of type Token
 void SimpleNode.addSpecial(java.lang.String key, Token value)
          Description of the Method
 

Constructors in com.jeffpalm.javaparser with parameters of type Token
NamedToken(java.lang.String initID, Token initToken)
          Creates a named token
ParseException(Token currentTokenVal, int[][] expectedTokenSequencesVal, java.lang.String[] tokenImageVal)
          This constructor is used by the method "generateParseException" in the generated parser.