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