Package org.codehaus.groovy.ast.expr
Class ClosureExpression
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
- All Implemented Interfaces:
- GroovydocHolder<AnnotatedNode>,- NodeMetaDataHandler
- Direct Known Subclasses:
- LambdaExpression
Represents a closure expression such as 
{ statement }
 or { i -> statement } or { i, x, String y ->  statement }- 
Field SummaryFields inherited from class org.codehaus.groovy.ast.expr.ExpressionEMPTY_ARRAYFields inherited from interface groovy.lang.groovydoc.GroovydocHolderDOC_COMMENT
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetCode()This gets the code statement of the closure.getText()booleanvoidThis sets the code statement of the closure.voidsetVariableScope(VariableScope variableScope) toString()transformExpression(ExpressionTransformer transformer) Transforms this expression and any nested expressions.voidvisit(GroovyCodeVisitor visitor) Methods inherited from class org.codehaus.groovy.ast.expr.ExpressiongetType, setType, transformExpressions, transformExpressionsMethods inherited from class org.codehaus.groovy.ast.AnnotatedNodeaddAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSyntheticMethods inherited from class org.codehaus.groovy.ast.ASTNodecopyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePositionMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.codehaus.groovy.ast.NodeMetaDataHandlercopyNodeMetaData, getNodeMetaData, getNodeMetaData, getNodeMetaData, newMetaDataMap, putNodeMetaData, removeNodeMetaData, setNodeMetaData
- 
Constructor Details- 
ClosureExpression
 
- 
- 
Method Details- 
getCodeThis gets the code statement of the closure. You can read this method to find out what actions the closure is going to perform.- Returns:
- the code statement of the closure
 
- 
setCodeThis sets the code statement of the closure. You can use this method in order to add more actions during the closure execution.- Parameters:
- code- the new Statement
 
- 
getParameters- Returns:
- an array of zero (for implicit it) or more (when explicit args given) parameters or null otherwise (representing explicit no args)
 
- 
isParameterSpecifiedpublic boolean isParameterSpecified()- Returns:
- trueif one or more explicit parameters are supplied
 
- 
getVariableScope
- 
setVariableScope
- 
getText
- 
toString
- 
transformExpressionDescription copied from class:ExpressionTransforms this expression and any nested expressions.- Specified by:
- transformExpressionin class- Expression
 
- 
visit
 
-