src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ClassDeclarationTree.java
changeset 50878 fb7800b66c92
parent 47216 71c04702a3d5
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
    27 import java.util.List;
    27 import java.util.List;
    28 
    28 
    29 /**
    29 /**
    30  * A tree node that represents a <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions">class declaration</a>.
    30  * A tree node that represents a <a href="http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions">class declaration</a>.
    31  *
    31  *
       
    32  * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool
       
    33  * are deprecated with the intent to remove them in a future release.
       
    34  *
    32  * @since 9
    35  * @since 9
    33  */
    36  */
       
    37 @Deprecated(since="11", forRemoval=true)
    34 public interface ClassDeclarationTree extends StatementTree {
    38 public interface ClassDeclarationTree extends StatementTree {
    35 
    39 
    36     /**
    40     /**
    37      * Class identifier.
    41      * Class identifier.
    38      *
    42      *