Package org.codehaus.groovy.ast.stmt
Interface LoopingStatement
- 
- All Known Implementing Classes:
 DoWhileStatement,ForStatement,WhileStatement
public interface LoopingStatementThis is an AST Node that provides some sort of looping mechanism. Typically in the form of a block that will be executed repeatedly. DoWhileStatements, WhileStatements, and ForStatements are all examples of LoopingStatements. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatementgetLoopBlock()Gets the loop block.voidsetLoopBlock(Statement loopBlock)Sets the loop block. 
 -