org.codehaus.groovy.ast.stmt
Class WhileStatement

java.lang.Object
  extended byorg.codehaus.groovy.ast.ASTNode
      extended byorg.codehaus.groovy.ast.stmt.Statement
          extended byorg.codehaus.groovy.ast.stmt.WhileStatement

public class WhileStatement
extends Statement

Represents a while (condition) { ... } loop in Groovy

Version:
$Revision: 1.1 $
Author:
James Strachan

Field Summary
 
Fields inherited from class org.codehaus.groovy.ast.ASTNode
EMPTY_STRING_ARRAY
 
Constructor Summary
WhileStatement(BooleanExpression booleanExpression, Statement loopBlock)
           
 
Method Summary
 BooleanExpression getBooleanExpression()
           
 Statement getLoopBlock()
           
 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, setCSTNode, setLineNumber
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WhileStatement

public WhileStatement(BooleanExpression booleanExpression,
                      Statement loopBlock)
Method Detail

visit

public void visit(GroovyCodeVisitor visitor)
Overrides:
visit in class ASTNode

getBooleanExpression

public BooleanExpression getBooleanExpression()

getLoopBlock

public Statement getLoopBlock()


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