com.sun.source.tree
Interface ForLoopTree
- All Superinterfaces:
- StatementTree, Tree
- All Known Implementing Classes:
- JCTree.JCForLoop
public interface ForLoopTree
- extends StatementTree
A tree node for a basic 'for' loop statement.
For example:
for ( initializer ; condition ; update )
statement
- Since:
- 1.6
- Author:
- Peter von der Ahé, Jonathan Gibbons
- See Also:
- "The Java Language Specification, 3rd ed, section 14.14.1"
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree |
Tree.Kind |
getInitializer
java.util.List<? extends StatementTree> getInitializer()
getCondition
ExpressionTree getCondition()
getUpdate
java.util.List<? extends ExpressionStatementTree> getUpdate()
getStatement
StatementTree getStatement()
Copyright © 2009. All Rights Reserved.