- All Superinterfaces:
 StatementTree,Tree
A tree node for a 
do statement.
 For example:
 
   do
       statement
   while ( expression );
 - See Java Language Specification:
 - 
14.13 The do Statement
 - Since:
 - 1.6
 
- 
Nested Class Summary
 - 
Method Summary
Modifier and TypeMethodDescriptionReturns the condition of the loop.Returns the body of the loop. 
- 
Method Details
- 
getCondition
ExpressionTree getCondition()Returns the condition of the loop.- Returns:
 - the condition
 
 - 
getStatement
StatementTree getStatement()Returns the body of the loop.- Returns:
 - the body of the loop
 
 
 -