1 package spoon.reflect.code;2 3 import spoon.template.TemplateParameter;4 5 /**6 * This abstract code element defines a loop.7 */8 public interface CtLoop extends CtStatement, TemplateParameter<Void > {9 10 /**11 * Gets the body of this loop.12 */13 CtStatement getBody();14 15 /**16 * Sets the body of this loop.17 */18 void setBody(CtStatement body);19 }20