src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/ParenthesizedTree.java
changeset 50878 fb7800b66c92
parent 47216 71c04702a3d5
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
    32  * For example:
    32  * For example:
    33  * <pre>
    33  * <pre>
    34  *   ( <em>expression</em> )
    34  *   ( <em>expression</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 ParenthesizedTree extends ExpressionTree {
    43 public interface ParenthesizedTree extends ExpressionTree {
    40     /**
    44     /**
    41      * Returns the expression within the parenthesis.
    45      * Returns the expression within the parenthesis.
    42      *
    46      *
    43      * @return the expression within the parenthesis
    47      * @return the expression within the parenthesis