Package org.sonar.plugins.java.api.tree
Interface IfStatementTree
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
IfStatementTreeImpl
'if' statement.
JLS 14.9
if (condition()
)thenStatement()
if (condition()
)thenStatement()
elseelseStatement()
- Since:
- Java 1.3
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
ifKeyword
SyntaxToken ifKeyword() -
openParenToken
SyntaxToken openParenToken() -
condition
ExpressionTree condition() -
closeParenToken
SyntaxToken closeParenToken() -
thenStatement
StatementTree thenStatement() -
elseKeyword
-
elseStatement
-