- All Superinterfaces:
- StatementTree,- Tree
public interface WhileLoopTree extends StatementTree
A tree node for a 
while loop statement.
 For example:
 
   while ( condition )
     statement
 - See Java Language Specification:
- 
14.12 The while Statement
- Since:
- 1.6
- 
Nested Class Summary
- 
Method SummaryModifier and Type Method Description ExpressionTreegetCondition()Returns the condition of the loop.StatementTreegetStatement()Returns the body of the loop.
- 
Method Details- 
getConditionExpressionTree getCondition()Returns the condition of the loop.- Returns:
- the condition
 
- 
getStatementStatementTree getStatement()Returns the body of the loop.- Returns:
- the body of the loop
 
 
-