org.sonar.javascript.model
Interface ConditionalOperatorTree

All Superinterfaces:
ExpressionTree, Tree
All Known Implementing Classes:
TreeImpl.ConditionalOperatorTreeImpl

public interface ConditionalOperatorTree
extends ExpressionTree

Conditional Operator.

   condition() ? thenExpression() : elseExpression()
 

This interface is not intended to be implemented by clients.


Method Summary
 ExpressionTree condition()
           
 ExpressionTree elseExpression()
           
 ExpressionTree thenExpression()
           
 
Methods inherited from interface org.sonar.javascript.model.Tree
as, getLine, is
 

Method Detail

condition

ExpressionTree condition()

thenExpression

ExpressionTree thenExpression()

elseExpression

ExpressionTree elseExpression()


Copyright © 2011-2014 SonarSource and Eriks Nukis. All Rights Reserved.