Represents a closure expression such as
{ statement }or { i
->
statement } or { i, x, String y ->
statement }
Type | Name and description |
---|---|
Statement |
code |
VariableScope |
variableScope |
Constructor and description |
---|
ClosureExpression
(Parameter[] parameters, Statement code) |
Type Params | Return Type | Name and description |
---|---|---|
|
Statement |
getCode() This gets the code statement of the closure. |
|
Parameter[] |
getParameters() @return an array of zero (for implicit it) or more (when explicit args given) parameters or null otherwise (representing explicit no args) |
|
String |
getText() |
|
VariableScope |
getVariableScope() |
|
boolean |
isParameterSpecified() @return true if one or more explicit parameters are supplied |
|
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 | Name |
---|---|
class Expression |
getType, setType, transformExpression, transformExpressions, transformExpressions |
class AnnotatedNode |
addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
class ASTNode |
copyNodeMetaData, equals, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, getText, hashCode, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition, visit |
This gets the code statement of the closure. You can read this method to find out what actions the closure is going to perform.
This sets the code statement of the closure. You can use this method in order to add more actions during the closure execution.
code
- the new StatementCopyright © 2003-2019 The Apache Software Foundation. All rights reserved.