Interface IJavaForEach

All Superinterfaces:
IJavaCompound, IJavaElement, IJavaExpression, IJavaStatement

@Ser public interface IJavaForEach extends IJavaCompound
Java AST interface used to represent a for-each (Java 5+) loop statement.

Example:

 for(type var: iterable) {
     // body
 }