src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/BreakTree.java
changeset 50878 fb7800b66c92
parent 47216 71c04702a3d5
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
    33  *   break;
    33  *   break;
    34  *
    34  *
    35  *   break <em>label</em> ;
    35  *   break <em>label</em> ;
    36  * </pre>
    36  * </pre>
    37  *
    37  *
       
    38  * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool
       
    39  * are deprecated with the intent to remove them in a future release.
       
    40  *
    38  * @since 9
    41  * @since 9
    39  */
    42  */
       
    43 @Deprecated(since="11", forRemoval=true)
    40 public interface BreakTree extends GotoTree {
    44 public interface BreakTree extends GotoTree {
    41     /**
    45     /**
    42      * Label associated with this break statement. This is null
    46      * Label associated with this break statement. This is null
    43      * if there is no label associated with this break statement.
    47      * if there is no label associated with this break statement.
    44      *
    48      *