Package org.sonar.plugins.java.api.tree
Interface WhileStatementTree
-
- All Superinterfaces:
StatementTree
,Tree
- All Known Implementing Classes:
WhileStatementTreeImpl
@Beta public interface WhileStatementTree extends StatementTree
'while' statement. JLS 14.12while (
condition()
)statement()
- Since:
- Java 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SyntaxToken
closeParenToken()
ExpressionTree
condition()
SyntaxToken
openParenToken()
StatementTree
statement()
SyntaxToken
whileKeyword()
-
-
-
Method Detail
-
whileKeyword
SyntaxToken whileKeyword()
-
openParenToken
SyntaxToken openParenToken()
-
condition
ExpressionTree condition()
-
closeParenToken
SyntaxToken closeParenToken()
-
statement
StatementTree statement()
-
-