当前页面: 
在线文档首页 > 
JDK 5 Documentation v6.0, Java 2 SDK 英文文档
IfTree (Compiler Tree API) - JDK 5 Documentation v6.0, Java 2 SDK 英文文档
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 classes/interfaces inherited from interface com.sun.source.tree.Tree | 
| Tree.Kind | 
 
 
 
getCondition
ExpressionTree getCondition()
- 
 
- 
 
getThenStatement
StatementTree getThenStatement()
- 
 
- 
 
getElseStatement
StatementTree getElseStatement()
- 
 
- 
- Returns:
- null if this if statement has no else branch.
 
Report a bug or request a feature.
Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.