1 package spoon.reflect.code; 2 3 /** 4 * This code element defines a <code>break</code> statement. 5 */ 6 public interface CtBreak extends CtCFlowBreak { 7 /** 8 * Gets the label from which the control flow breaks (null if no label 9 * defined). 10 */ 11 String getTargetLabel(); 12 13 /** 14 * Sets the label from which the control flow breaks (null if no label 15 * defined). 16 */ 17 void setTargetLabel(String targetLabel); 18 } 19