Interface ParenthesizedRelationalExpressionTree
- All Superinterfaces:
BooleanExpressionTree,HasTextRange,JclTree
A relation expression enclosed in parentheses, e.g.
(RC > 8).-
Nested Class Summary
Nested classes/interfaces inherited from interface org.sonar.plugins.jcl.api.tree.JclTree
JclTree.Kind -
Method Summary
Modifier and TypeMethodDescriptionMethods inherited from interface org.sonar.plugins.jcl.api.tree.HasTextRange
textRange
-
Method Details
-
openingParenthesis
SyntaxToken openingParenthesis()- Returns:
- the opening parenthesis token.
-
expression
BooleanExpressionTree expression()- Returns:
- the enclosed expression.
-
closingParenthesis
SyntaxToken closingParenthesis()- Returns:
- the closing parenthesis token.
-