Package org.sonar.plugins.java.api.tree
Interface WhileStatementTree
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
WhileStatementTreeImpl
'while' statement.
JLS 14.12
while (condition()
)statement()
- Since:
- Java 1.3
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescription
-
Method Details
-
whileKeyword
SyntaxToken whileKeyword() -
openParenToken
SyntaxToken openParenToken() -
condition
ExpressionTree condition() -
closeParenToken
SyntaxToken closeParenToken() -
statement
StatementTree statement()
-