Uses of Class
org.codehaus.groovy.ast.Type

Packages that use Type
org.codehaus.groovy.ast Groovy AST nodes for the syntax of the language 
org.codehaus.groovy.ast.expr AST nodes for Groovy expressions 
org.codehaus.groovy.ast.stmt AST nodes for Groovy statements 
org.codehaus.groovy.classgen Generates Java classes for Groovy classes using ASM. 
org.codehaus.groovy.syntax.parser The main parser of Groovy code into the Groovy AST model (Abstract Syntax Tree)  
 

Uses of Type in org.codehaus.groovy.ast
 

Fields in org.codehaus.groovy.ast declared as Type
static Type Type.DYNAMIC_TYPE
           
 

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

Methods in org.codehaus.groovy.ast.expr with parameters of type Type
static BinaryExpression BinaryExpression.newInitializationExpression(java.lang.String variable, Type type, Expression rhs)
          Creates variable initialization expression in which the specified expression is written into the specified variable name.
 

Uses of Type in org.codehaus.groovy.ast.stmt
 

Fields in org.codehaus.groovy.ast.stmt declared as Type
private  Type ForStatement.variableType
           
 

Methods in org.codehaus.groovy.ast.stmt that return Type
 Type ForStatement.getVariableType()
           
 

Methods in org.codehaus.groovy.ast.stmt with parameters of type Type
 void ForStatement.setVariableType(Type varType)
           
 

Constructors in org.codehaus.groovy.ast.stmt with parameters of type Type
ForStatement(java.lang.String variable, Type variableType, Expression collectionExpression, Statement loopBlock)
           
 

Uses of Type in org.codehaus.groovy.classgen
 

Fields in org.codehaus.groovy.classgen declared as Type
private  Type Variable.type
           
 

Methods in org.codehaus.groovy.classgen that return Type
 Type Variable.getType()
           
protected  Type AsmClassGenerator.checkValidType(Type type, ASTNode node, java.lang.String message)
           
 

Methods in org.codehaus.groovy.classgen with parameters of type Type
 void Variable.setType(Type type)
           
private  Variable AsmClassGenerator.defineVariable(java.lang.String name, Type type, boolean define)
           
private  boolean AsmClassGenerator.isDoubleSizeVariable(Type type)
           
protected  Type AsmClassGenerator.checkValidType(Type type, ASTNode node, java.lang.String message)
           
 

Constructors in org.codehaus.groovy.classgen with parameters of type Type
Variable(int index, Type type, java.lang.String name)
           
 

Uses of Type in org.codehaus.groovy.syntax.parser
 

Methods in org.codehaus.groovy.syntax.parser that return Type
protected  Type ASTBuilder.typeExpression(CSTNode reduction)
          Converts an (possibly optional) type expression to a Type.
 



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