-
- All Superinterfaces:
StatementTree,Tree
public interface DoWhileLoopTree extends StatementTree
A tree node for adostatement. For example:do statement while ( expression );- Since:
- 1.6
- See The Java™ Language Specification:
- section 14.13
-
-
Method Summary
All 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
-
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
-
-