org.codehaus.groovy.ast.stmt
Class DoWhileStatement
java.lang.Object
org.codehaus.groovy.ast.ASTNode
org.codehaus.groovy.ast.stmt.Statement
org.codehaus.groovy.ast.stmt.DoWhileStatement
- public class DoWhileStatement
- extends Statement
Represents a do { ... } while (condition) loop in Groovy
- Version:
- $Revision: 1.1 $
- Author:
- James Strachan
Fields inherited from class org.codehaus.groovy.ast.stmt.Statement |
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
booleanExpression
private BooleanExpression booleanExpression
loopBlock
private Statement loopBlock
DoWhileStatement
public DoWhileStatement(BooleanExpression booleanExpression,
Statement loopBlock)
visit
public void visit(GroovyCodeVisitor visitor)
- Overrides:
visit
in class ASTNode
getBooleanExpression
public BooleanExpression getBooleanExpression()
getLoopBlock
public Statement getLoopBlock()
Copyright © 2003-2005 The Codehaus. All Rights Reserved.