Interface IfTree
- All Superinterfaces:
- StatementTree,- Tree
A tree node for an 
if statement.
 For example:
 
   if ( condition )
      thenStatement
   if ( condition )
       thenStatement
   else
       elseStatement
 - See Java Language Specification:
- 
14.9 The if Statement
- Since:
- 1.6
- 
Nested Class Summary
- 
Method SummaryModifier and TypeMethodDescriptionReturns the condition of the if-statement.Returns the statement to be executed if the condition is false, ornullif there is no such statement.Returns the statement to be executed if the condition is true
- 
Method Details- 
getCondition
- 
getThenStatementStatementTree getThenStatement()Returns the statement to be executed if the condition is true- Returns:
- the statement to be executed if the condition is true
 
- 
getElseStatementStatementTree getElseStatement()Returns the statement to be executed if the condition is false, ornullif there is no such statement.- Returns:
- the statement to be executed if the condition is false
 
 
-