- 
- All Superinterfaces:
- StatementTree,- Tree
 
 public interface WhileLoopTree extends StatementTree A tree node for awhileloop statement. For example:while ( condition ) statement- Since:
- 1.6
- See The Java™ Language Specification:
- section 14.12
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetCondition()Returns the condition of the loop.StatementTreegetStatement()Returns the body of the loop.
 
- 
- 
- 
Method Detail- 
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
 
 
- 
 
-