< prev index next >

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

Print this page

        

@@ -28,12 +28,16 @@
 import java.util.List;
 
 /**
  * A tree node that represents a <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions">class expression</a>.
  *
+ * @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 ClassExpressionTree extends ExpressionTree {
     /**
      * Class identifier. Optional.
      *
      * @return the class identifier
< prev index next >