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

Packages that use Parameter
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.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 Parameter in org.codehaus.groovy.ast
 

Fields in org.codehaus.groovy.ast declared as Parameter
static org.codehaus.groovy.ast.Parameter[] Parameter.EMPTY_ARRAY
           
 

Methods in org.codehaus.groovy.ast that return Parameter
 org.codehaus.groovy.ast.Parameter[] ConstructorNode.getParameters()
           
 org.codehaus.groovy.ast.Parameter[] MethodNode.getParameters()
           
 

Methods in org.codehaus.groovy.ast with parameters of type Parameter
 org.codehaus.groovy.ast.ConstructorNode ClassNode.addConstructor(int modifiers, org.codehaus.groovy.ast.Parameter[] parameters, org.codehaus.groovy.ast.stmt.Statement code)
           
 org.codehaus.groovy.ast.MethodNode ClassNode.addMethod(String name, int modifiers, String returnType, org.codehaus.groovy.ast.Parameter[] parameters, org.codehaus.groovy.ast.stmt.Statement code)
           
 

Constructors in org.codehaus.groovy.ast with parameters of type Parameter
ConstructorNode(int modifiers, org.codehaus.groovy.ast.Parameter[] parameters, org.codehaus.groovy.ast.stmt.Statement code)
           
MethodNode(String name, int modifiers, String returnType, org.codehaus.groovy.ast.Parameter[] parameters, org.codehaus.groovy.ast.stmt.Statement code)
           
 

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

Methods in org.codehaus.groovy.ast.expr that return Parameter
 org.codehaus.groovy.ast.Parameter[] ClosureExpression.getParameters()
           
 

Constructors in org.codehaus.groovy.ast.expr with parameters of type Parameter
ArgumentListExpression(org.codehaus.groovy.ast.Parameter[] parameters)
           
ClosureExpression(org.codehaus.groovy.ast.Parameter[] parameters, org.codehaus.groovy.ast.stmt.Statement code)
           
 

Uses of Parameter in org.codehaus.groovy.classgen
 

Methods in org.codehaus.groovy.classgen that return Parameter
protected  org.codehaus.groovy.ast.Parameter[] ClassGenerator.getClosureSharedVariables(org.codehaus.groovy.ast.expr.ClosureExpression expression)
           
 

Methods in org.codehaus.groovy.classgen with parameters of type Parameter
protected  void ClassGenerator.resetVariableStack(org.codehaus.groovy.ast.Parameter[] parameters)
           
protected  String ClassGenerator.getMethodDescriptor(String returnTypeName, org.codehaus.groovy.ast.Parameter[] paramTypeNames)
           
protected  void VariableScopeCodeVisitor.setParameters(org.codehaus.groovy.ast.Parameter[] parameters)
           
 

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

Methods in org.codehaus.groovy.syntax.parser that return Parameter
protected  org.codehaus.groovy.ast.Parameter[] ASTBuilder.parameters(org.codehaus.groovy.syntax.parser.CSTNode[] paramRoots)
           
 



Copyright © 2003 The Codehaus. All Rights Reserved.