org.sonar.plugins.java.api.tree
Interface ForStatementTree
- All Superinterfaces:
- StatementTree, Tree
@Beta
public interface ForStatementTree
- extends StatementTree
'for' statement.
JLS 14.14
for ( initializer() ; condition() ; update() ) statement()
- Since:
- Java 1.3
| Nested classes/interfaces inherited from interface org.sonar.plugins.java.api.tree.Tree |
Tree.Kind |
| Methods inherited from interface org.sonar.plugins.java.api.tree.Tree |
accept, is |
initializer
List<StatementTree> initializer()
condition
@Nullable
ExpressionTree condition()
update
List<StatementTree> update()
statement
StatementTree statement()
Copyright © 2012-2014 SonarSource. All Rights Reserved.