Compiler Tree API

com.sun.source.tree
Interface IfTree

All Superinterfaces:
StatementTree, Tree

public interface IfTree
extends StatementTree

A tree node for an 'if' statement. For example:

   if ( condition )
      thenStatement

   if ( condition )
       thenStatement
   else
       elseStatement
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 14.9"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getCondition()
           
 StatementTree getElseStatement()
           
 StatementTree getThenStatement()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getCondition

ExpressionTree getCondition()

getThenStatement

StatementTree getThenStatement()

getElseStatement

StatementTree getElseStatement()
Returns:
null if this if statement has no else branch.

Compiler Tree API

Copyright © 2005, 2013, Oracle and/or its affiliates. All rights reserved.