Interface IJavaWhile

All Superinterfaces:
IJavaCompound, IJavaElement, IJavaExpression, IJavaStatement

@Ser public interface IJavaWhile extends IJavaCompound
Java AST interface to represent while loop statements. A while loop is a pre-tested loop, that consists of a test predicate and a body.
 while(predicate) {
     // body
 }