org.codehaus.groovy.ast.stmt
Class WhileStatement

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

public class WhileStatement
extends Statement

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

Version:
$Revision: 15760 $
Author:
James Strachan

Constructor Summary
WhileStatement(BooleanExpression booleanExpression, Statement loopBlock)
           
 
Method Summary
 BooleanExpression getBooleanExpression()
           
 Statement getLoopBlock()
           
 void setBooleanExpression(BooleanExpression booleanExpression)
           
 void setLoopBlock(Statement loopBlock)
           
 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, getLastColumnNumber, getLastLineNumber, getLineNumber, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setSourcePosition
 
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()

setBooleanExpression

public void setBooleanExpression(BooleanExpression booleanExpression)

setLoopBlock

public void setLoopBlock(Statement loopBlock)

Copyright © 2003-2010 The Codehaus. All rights reserved.