< prev index next >

src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ContinueTree.java

Print this page

        

@@ -32,12 +32,16 @@
  * <pre>
  *   continue;
  *   continue <em>label</em> ;
  * </pre>
  *
+ * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool
+ * are deprecated with the intent to remove them in a future release.
+ *
  * @since 9
  */
+@Deprecated(since="11", forRemoval=true)
 public interface ContinueTree extends GotoTree {
     /**
      * Label associated with this continue statement. This is null
      * if there is no label associated with this continue statement.
      *
< prev index next >