1 package spoon.reflect.code; 2 3 /** 4 * This code element defines the <code>continue</code> statement. 5 */ 6 public interface CtContinue extends CtCFlowBreak { 7 /** 8 * Gets the statement where the control flow continues (null if no label 9 * defined). 10 */ 11 CtStatement getLabelledStatement(); 12 13 /** 14 * Sets the statement where the control flow continues (null if no label 15 * defined). 16 */ 17 void setLabelledStatement(CtStatement labelledStatement); 18 } 19