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.4 $
Author:
James Strachan

Constructor Summary
ForStatement(String variable, ClassNode variableType, Expression collectionExpression, Statement loopBlock)
           
 
Method Summary
 Expression getCollectionExpression()
           
 Statement getLoopBlock()
           
 String getVariable()
           
 ClassNode getVariableType()
           
 void setCollectionExpression(Expression collectionExpression)
           
 void setVariableType(ClassNode 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, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ForStatement

public ForStatement(String variable,
                    ClassNode 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 String getVariable()

getVariableType

public ClassNode getVariableType()

setVariableType

public void setVariableType(ClassNode varType)

setCollectionExpression

public void setCollectionExpression(Expression collectionExpression)


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