Uses of Class
token.Token

Packages that use Token
token   
token.tokenizer   
 

Uses of Token in token
 

Methods in token that return Token
 Token TokenFactory.makeToken(java.lang.String name, java.lang.String lexeme)
          Creates ATokens from the given name and lexeme.
 Token ITokenFactory.makeToken(java.lang.String name, java.lang.String lexeme)
          Creates an instance of an Token from the given name and lexeme values
 

Methods in token with parameters of type Token
 java.lang.Object ITokVisitorCmd.apply(java.lang.String id, Token host, java.lang.Object... params)
           
 java.lang.Object ITokVisitor.caseAt(java.lang.String id, Token host, java.lang.Object... params)
           
 java.lang.Object ATokVisitor.caseAt(java.lang.String id, Token host, java.lang.Object... params)
           
 

Uses of Token in token.tokenizer
 

Fields in token.tokenizer with type parameters of type Token
private  java.util.Stack<Token> ABCTokenizer.stack
          Push-back stack for tokens.
 

Methods in token.tokenizer that return Token
 Token ABCTokenizer.getNextToken()
          Return the next token, either from the stream or the last token if it was pushed back
 Token ITokenizer.getNextToken()
          Return the next token.
 Token ABCTokenizer.makeNextToken()
          Parse the strings down from the getNextStringToken further, separating out the abc keywords into tokens.
 

Methods in token.tokenizer with parameters of type Token
 void ABCTokenizer.putBack(Token t)
           
 void ITokenizer.putBack(Token t)
          Put the previously consumed token back into the token stream.