Uses of Interface
org.fife.rsta.ac.java.rjc.lexer.Token

Packages that use Token
org.fife.rsta.ac.java.rjc.ast   
org.fife.rsta.ac.java.rjc.lang   
org.fife.rsta.ac.java.rjc.lexer   
org.fife.rsta.ac.java.rjc.notices   
 

Uses of Token in org.fife.rsta.ac.java.rjc.ast
 

Methods in org.fife.rsta.ac.java.rjc.ast with parameters of type Token
 void CompilationUnit.addParserNotice(Token t, String msg)
          Shorthand for "addParserNotice(new ParserNotice(t, msg))".
 

Constructors in org.fife.rsta.ac.java.rjc.ast with parameters of type Token
Field(Scanner s, Modifiers modifiers, Type type, Token t)
           
Method(Scanner s, Modifiers modifiers, Type type, Token nameToken, List params, List thrownTypeNames)
           
 

Uses of Token in org.fife.rsta.ac.java.rjc.lang
 

Constructors in org.fife.rsta.ac.java.rjc.lang with parameters of type Token
TypeParameter(Token name)
           
Variable(boolean isFinal, Type type, Token name)
           
 

Uses of Token in org.fife.rsta.ac.java.rjc.lexer
 

Methods in org.fife.rsta.ac.java.rjc.lexer that return Token
 Token Scanner.getMostRecentToken()
          Returns the most recently-lexed token.
 Token Scanner.yylex()
          Returns the next token from the input stream.
 Token Scanner.yylexNonNull(int type1, int type2, int type3, String error)
          Returns the next token from the input stream, or throws an exception if the end of stream is reached or if the token is not of three given types.
 Token Scanner.yylexNonNull(int type1, int type2, String error)
          Returns the next token from the input stream, or throws an exception if the end of stream is reached or if the token is not of two given types.
 Token Scanner.yylexNonNull(int type, String error)
          Returns the next token from the input stream, or throws an exception if the end of stream is reached or if the token is not of a given type.
 Token Scanner.yylexNonNull(String error)
          Returns the next token from the input stream, or throws an exception if the end of stream is reached.
 Token Scanner.yyPeek()
          Returns the next token, but does not take it off of the stream.
 Token Scanner.yyPeek(int depth)
          Returns the depth-th token, but does not anything off of the stream.
 Token Scanner.yyPeekNonNull(int type1, int type2, int type3, String error)
          Returns the next token, but does not take it off of the stream.
 Token Scanner.yyPeekNonNull(int type1, int type2, String error)
          Returns the next token, but does not take it off of the stream.
 Token Scanner.yyPeekNonNull(int type, String error)
          Returns the next token, but does not take it off of the stream.
 Token Scanner.yyPeekNonNull(String error)
          Returns the next token, but does not take it off of the stream.
 

Methods in org.fife.rsta.ac.java.rjc.lexer with parameters of type Token
 void Scanner.yyPushback(Token t)
          Pushes a token back onto the stream.
 

Uses of Token in org.fife.rsta.ac.java.rjc.notices
 

Constructors in org.fife.rsta.ac.java.rjc.notices with parameters of type Token
ParserNotice(Token t, String msg)
           
 



Copyright © 2003-2011. All Rights Reserved.