Interface IJavaDoWhile

All Superinterfaces:
IJavaCompound, IJavaElement, IJavaExpression, IJavaStatement

@Ser public interface IJavaDoWhile extends IJavaCompound
Java AST interface to represent a do-while loop statement. A do-while loop is a post-tested loop, that consists of a body and a test predicate.

Example:

 do {
     // body
 }
 while(predicate);
 
  • Method Details