< prev index next >

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

Print this page

        

@@ -32,12 +32,16 @@
  * <pre>
  *   for ( <em>initializer</em> ; <em>condition</em> ; <em>update</em> )
  *       <em>statement</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 ForLoopTree extends ConditionalLoopTree {
     /**
      * Returns the initializer expression of this 'for' statement.
      *
      * @return the initializer expression
< prev index next >