Compiler Tree API

com.sun.source.tree
Interface ConditionalExpressionTree

All Superinterfaces:
ExpressionTree, Tree

public interface ConditionalExpressionTree
extends ExpressionTree

A tree node for the conditional operator ? :. For example:

   condition ? trueExpression : falseExpression
 

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

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

Method Detail

getCondition

ExpressionTree getCondition()

getTrueExpression

ExpressionTree getTrueExpression()

getFalseExpression

ExpressionTree getFalseExpression()

Compiler Tree API

Submit a bug or feature

Copyright 2010 Sun Microsystems, Inc. All rights reserved. Use is subject to the terms of the GNU General Public License.