|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.codehaus.groovy.ast.ASTNode org.codehaus.groovy.ast.AnnotatedNode org.codehaus.groovy.ast.expr.Expression org.codehaus.groovy.ast.expr.ClosureExpression
public class ClosureExpression extends Expression
Represents a closure expression such as { statement } or { i -> statement } or { i, x, String y -> statement }
Constructor Summary | |
ClosureExpression(Parameter[] parameters, Statement code)
|
Method Summary | |
---|---|
Statement
|
getCode()
This gets the code statement of the closure. |
Parameter[]
|
getParameters()
|
String
|
getText()
|
VariableScope
|
getVariableScope()
|
boolean
|
isParameterSpecified()
|
void
|
setCode(Statement code)
This sets the code statement of the closure. |
void
|
setVariableScope(VariableScope variableScope)
|
String
|
toString()
|
Expression
|
transformExpression(ExpressionTransformer transformer)
|
void
|
visit(GroovyCodeVisitor visitor)
|
Methods inherited from class Expression | |
---|---|
getType, setType, transformExpression, transformExpressions, transformExpressions |
Methods inherited from class AnnotatedNode | |
---|---|
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public ClosureExpression(Parameter[] parameters, Statement code)
Method Detail |
---|
public Statement getCode()
public Parameter[] getParameters()
@Override public String getText()
public VariableScope getVariableScope()
public boolean isParameterSpecified()
public void setCode(Statement code)
code
- the new Statement
public void setVariableScope(VariableScope variableScope)
public String toString()
public Expression transformExpression(ExpressionTransformer transformer)
public void visit(GroovyCodeVisitor visitor)
Copyright © 2003-2013 The Codehaus. All rights reserved.