Uses of Class
org.codehaus.groovy.syntax.Token

Packages that use Token
groovy.sql Groovy helper classes for working with SQL data as Groovy objects 
org.codehaus.groovy.antlr   
org.codehaus.groovy.ast.expr AST nodes for Groovy expressions 
org.codehaus.groovy.syntax Lexer, parser and trees. 
 

Uses of Token in groovy.sql
 

Methods in groovy.sql with parameters of type Token
protected  String SqlWhereVisitor.tokenAsSql(Token token)
           
 

Uses of Token in org.codehaus.groovy.antlr
 

Methods in org.codehaus.groovy.antlr that return Token
protected static Token AntlrParserPlugin.makeToken(int typeCode, antlr.collections.AST node)
           
 

Uses of Token in org.codehaus.groovy.ast.expr
 

Methods in org.codehaus.groovy.ast.expr that return Token
 Token BinaryExpression.getOperation()
           
 Token PrefixExpression.getOperation()
           
 Token PostfixExpression.getOperation()
           
 

Constructors in org.codehaus.groovy.ast.expr with parameters of type Token
BinaryExpression(Expression leftExpression, Token operation, Expression rightExpression)
           
DeclarationExpression(VariableExpression left, Token operation, Expression right)
           
PostfixExpression(Expression expression, Token operation)
           
PrefixExpression(Token operation, Expression expression)
           
 

Uses of Token in org.codehaus.groovy.syntax
 

Fields in org.codehaus.groovy.syntax declared as Token
static Token Token.EOF
           
static Token Token.NULL
           
 

Methods in org.codehaus.groovy.syntax that return Token
 Token Token.dup()
          Returns a copy of this Token.
 Token Reduction.getRoot()
          Returns the root of the node, the Token that indicates it's type.
abstract  Token CSTNode.getRoot()
          Returns the root of the node.
 Token Token.getRoot()
          Returns the root of the node.
 Token CSTNode.getRoot(boolean safe)
          Returns the root of the node, the Token that indicates it's type.
 Token TokenMismatchException.getUnexpectedToken()
           
static Token Token.newDecimal(String text, int startLine, int startColumn)
          Creates a token that represents a decimal number.
static Token Token.newIdentifier(String text, int startLine, int startColumn)
          Creates a token that represents an identifier.
static Token Token.newInteger(String text, int startLine, int startColumn)
          Creates a token that represents an integer.
static Token Token.newKeyword(String text, int startLine, int startColumn)
          Creates a token that represents a keyword.
static Token Token.newPlaceholder(int type)
          Creates a token with the specified meaning.
static Token Token.newString(String text, int startLine, int startColumn)
          Creates a token that represents a double-quoted string.
static Token Token.newSymbol(int type, int startLine, int startColumn)
          Creates a token that represents a symbol, using a library for the text.
static Token Token.newSymbol(String type, int startLine, int startColumn)
          Creates a token that represents a symbol, using a library for the type.
 

Constructors in org.codehaus.groovy.syntax with parameters of type Token
ParserException(String message, Token token)
           
Reduction(Token root)
          Initializes the Reduction with the specified root.
TokenException(String message, Token token)
           
TokenMismatchException(Token token, int expectedType)
           
 



Copyright © 2003-2008 The Codehaus. All Rights Reserved.