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
- public class ForStatement
- extends Statement
Represents a standard for loop in Groovy
- Version:
- $Revision: 1.1 $
- Author:
- James Strachan
Constructor Summary |
ForStatement(String variable,
org.codehaus.groovy.ast.expr.Expression collectionExpression,
org.codehaus.groovy.ast.stmt.Statement loopBlock)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ForStatement
public ForStatement(String variable,
org.codehaus.groovy.ast.expr.Expression collectionExpression,
org.codehaus.groovy.ast.stmt.Statement loopBlock)
visit
public void visit(org.codehaus.groovy.ast.GroovyCodeVisitor visitor)
- Overrides:
visit
in class ASTNode
getCollectionExpression
public org.codehaus.groovy.ast.expr.Expression getCollectionExpression()
getLoopBlock
public org.codehaus.groovy.ast.stmt.Statement getLoopBlock()
getVariable
public String getVariable()
Copyright © 2003 The Codehaus. All Rights Reserved.