org.codehaus.groovy.ast.stmt
Class ForStatement

java.lang.Object
  extended byorg.codehaus.groovy.ast.ASTNode
      extended byorg.codehaus.groovy.ast.stmt.Statement
          extended byorg.codehaus.groovy.ast.stmt.ForStatement

public class ForStatement
extends Statement

Represents a standard for loop in Groovy

Version:
$Revision: 1.3 $
Author:
James Strachan

Field Summary
private  Expression collectionExpression
           
private  Statement loopBlock
           
private  java.lang.String variable
           
private  Type variableType
           
 
Fields inherited from class org.codehaus.groovy.ast.stmt.Statement
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
ForStatement(java.lang.String variable, Type variableType, Expression collectionExpression, Statement loopBlock)
           
 
Method Summary
 Expression getCollectionExpression()
           
 Statement getLoopBlock()
           
 java.lang.String getVariable()
           
 Type getVariableType()
           
 void setVariableType(Type varType)
           
 void visit(GroovyCodeVisitor visitor)
           
 
Methods inherited from class org.codehaus.groovy.ast.stmt.Statement
getStatementLabel, isEmpty, setStatementLabel
 
Methods inherited from class org.codehaus.groovy.ast.ASTNode
getColumnNumber, getLineNumber, getText, setColumnNumber, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

variable

private java.lang.String variable

collectionExpression

private Expression collectionExpression

loopBlock

private Statement loopBlock

variableType

private Type variableType
Constructor Detail

ForStatement

public ForStatement(java.lang.String variable,
                    Type variableType,
                    Expression collectionExpression,
                    Statement loopBlock)
Method Detail

visit

public void visit(GroovyCodeVisitor visitor)
Overrides:
visit in class ASTNode

getCollectionExpression

public Expression getCollectionExpression()

getLoopBlock

public Statement getLoopBlock()

getVariable

public java.lang.String getVariable()

getVariableType

public Type getVariableType()

setVariableType

public void setVariableType(Type varType)


Copyright © 2003-2005 The Codehaus. All Rights Reserved.