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
- All Implemented Interfaces:
- LoopingStatement
public class WhileStatement
- extends Statement
- implements LoopingStatement
Represents a while (condition) { ... } loop in Groovy
- Version:
- $Revision$
- Author:
- James Strachan
Methods inherited from class org.codehaus.groovy.ast.ASTNode |
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getNodeMetaData, getText, putNodeMetaData, removeNodeMetaData, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setNodeMetaData, setSourcePosition |
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()
- Description copied from interface:
LoopingStatement
- Gets the loop block.
- Specified by:
getLoopBlock
in interface LoopingStatement
setBooleanExpression
public void setBooleanExpression(BooleanExpression booleanExpression)
setLoopBlock
public void setLoopBlock(Statement loopBlock)
- Description copied from interface:
LoopingStatement
- Sets the loop block.
- Specified by:
setLoopBlock
in interface LoopingStatement