File
Doc
Category
Size
Date
Package
ForLoopTree.java
API Doc
Java SE 6 API
950
Tue Jun 10 00:23:24 BST 2008
com.sun.source.tree
ForLoopTree
public interface ForLoopTree implements StatementTree
A tree node for a basic 'for' loop statement. For example:
for (
initializer
;
condition
;
update
)
statement
see
"The Java Language Specification, 3rd ed, section 14.14.1"
author
Peter von der Ahé
author
Jonathan Gibbons
since
1.6
Fields Summary
Constructors Summary
Methods Summary
public
com.sun.source.tree.ExpressionTree
getCondition
()
public
java.util.List
getInitializer
()
public
com.sun.source.tree.StatementTree
getStatement
()
public
java.util.List
getUpdate
()
Java Code Source