Uses of Class
com.g11ntoolkit.parser.java.Token

Packages that use Token
com.g11ntoolkit.parser.java The set of classes that make up the Java File Parser support for the G11NToolKit. 
 

Uses of Token in com.g11ntoolkit.parser.java
 

Fields in com.g11ntoolkit.parser.java declared as Token
 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 ParseException.currentToken
          This is the last token that has been consumed successfully.
 Token JavaParser.token
           
 Token JavaParser.jj_nt
           
private  Token JavaParser.jj_scanpos
           
private  Token JavaParser.jj_lastpos
           
(package private)  Token JavaParser.JJCalls.first
           
protected  Token SimpleNode.first
          The first token for the node.
protected  Token SimpleNode.last
          The last token for the node.
 

Methods in com.g11ntoolkit.parser.java that return Token
static Token Token.newToken(int ofKind)
          Returns a new Token object, by default.
protected  Token JavaParserTokenManager.jjFillToken()
           
 Token JavaParserTokenManager.getNextToken()
           
private  Token JavaParser.jj_consume_token(int kind)
           
 Token JavaParser.getNextToken()
           
 Token JavaParser.getToken(int index)
           
 Token SimpleNode.getFirstToken()
          Returns the first token for the current node.
 Token SimpleNode.getLastToken()
          Returns the last token for the current node.
 

Methods in com.g11ntoolkit.parser.java with parameters of type Token
(package private)  void JavaParserTokenManager.SkipLexicalActions(Token matchedToken)
           
protected  void LTTreeWalker.print(Token t)
          Print a com.g11ntoolkit.parser.java.Token for a node in the tree.
 

Constructors in com.g11ntoolkit.parser.java 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.