KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > reflect > code > CtBreak


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 JavaDoc getTargetLabel();
12
13     /**
14      * Sets the label from which the control flow breaks (null if no label
15      * defined).
16      */

17     void setTargetLabel(String JavaDoc targetLabel);
18 }
19
Popular Tags