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.
| Methods inherited from interface org.sonar.javascript.model.Tree |
as, getLine, is |
condition
ExpressionTree condition()
thenExpression
ExpressionTree thenExpression()
elseExpression
ExpressionTree elseExpression()
Copyright © 2011-2014 SonarSource and Eriks Nukis. All Rights Reserved.