Package org.codehaus.groovy.ast.stmt
Class ForStatement
- java.lang.Object
 - 
- org.codehaus.groovy.ast.ASTNode
 - 
- org.codehaus.groovy.ast.stmt.Statement
 - 
- org.codehaus.groovy.ast.stmt.ForStatement
 
 
 
 
- 
- All Implemented Interfaces:
 LoopingStatement
public class ForStatement extends Statement implements LoopingStatement
Represents a standard for loop in Groovy 
- 
- 
Field Summary
Fields Modifier and Type Field Description static ParameterFOR_LOOP_DUMMY 
- 
Constructor Summary
Constructors Constructor Description ForStatement(Parameter variable, Expression collectionExpression, Statement loopBlock) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetCollectionExpression()StatementgetLoopBlock()Gets the loop block.ParametergetVariable()VariableScopegetVariableScope()ClassNodegetVariableType()voidsetCollectionExpression(Expression collectionExpression)voidsetLoopBlock(Statement loopBlock)Sets the loop block.voidsetVariableScope(VariableScope variableScope)voidvisit(GroovyCodeVisitor visitor)- 
Methods inherited from class org.codehaus.groovy.ast.stmt.Statement
addStatementLabel, getStatementLabel, getStatementLabels, isEmpty, setStatementLabel 
- 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
copyNodeMetaData, equals, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getNodeMetaData, getNodeMetaData, getText, hashCode, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition 
 - 
 
 - 
 
- 
- 
Field Detail
- 
FOR_LOOP_DUMMY
public static final Parameter FOR_LOOP_DUMMY
 
 - 
 
- 
Constructor Detail
- 
ForStatement
public ForStatement(Parameter variable, Expression collectionExpression, Statement loopBlock)
 
 - 
 
- 
Method Detail
- 
visit
public void visit(GroovyCodeVisitor visitor)
 
- 
getCollectionExpression
public Expression getCollectionExpression()
 
- 
getLoopBlock
public Statement getLoopBlock()
Description copied from interface:LoopingStatementGets the loop block.- Specified by:
 getLoopBlockin interfaceLoopingStatement
 
- 
getVariable
public Parameter getVariable()
 
- 
getVariableType
public ClassNode getVariableType()
 
- 
setCollectionExpression
public void setCollectionExpression(Expression collectionExpression)
 
- 
setVariableScope
public void setVariableScope(VariableScope variableScope)
 
- 
getVariableScope
public VariableScope getVariableScope()
 
- 
setLoopBlock
public void setLoopBlock(Statement loopBlock)
Description copied from interface:LoopingStatementSets the loop block.- Specified by:
 setLoopBlockin interfaceLoopingStatement
 
 - 
 
 -