org.codehaus.groovy.ast.stmt
Class WhileStatement
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.stmt.Statement
org.codehaus.groovy.ast.stmt.WhileStatement
public class WhileStatement
- extends Statement
Represents a while (condition) { ... } loop in Groovy
- Version:
- $Revision: 15759 $
- Author:
- James Strachan
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WhileStatement
public WhileStatement(BooleanExpression booleanExpression,
Statement loopBlock)
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
visit
in class ASTNode
getBooleanExpression
public BooleanExpression getBooleanExpression()
getLoopBlock
public Statement getLoopBlock()
setBooleanExpression
public void setBooleanExpression(BooleanExpression booleanExpression)
setLoopBlock
public void setLoopBlock(Statement loopBlock)