28 /**
29 * A tree node for a 'break' statement.
30 *
31 * For example:
32 * <pre>
33 * break;
34 *
35 * break <em>label</em> ;
36 * </pre>
37 *
38 * @since 1.9
39 */
40 @jdk.Exported
41 public interface BreakTree extends GotoTree {
42 /**
43 * Label associated with this break statement. This is null
44 * if there is no label associated with this break statement.
45 *
46 * @return label associated with this break statement.
47 */
48 String getLabel();
49 }
|
28 /**
29 * A tree node for a 'break' statement.
30 *
31 * For example:
32 * <pre>
33 * break;
34 *
35 * break <em>label</em> ;
36 * </pre>
37 *
38 * @since 1.9
39 */
40 @jdk.Exported
41 public interface BreakTree extends GotoTree {
42 /**
43 * Label associated with this break statement. This is null
44 * if there is no label associated with this break statement.
45 *
46 * @return label associated with this break statement.
47 */
48 @Override
49 String getLabel();
50 }
|