src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/tree/DoWhileLoopTree.java
changeset 50878 fb7800b66c92
parent 47216 71c04702a3d5
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
    33  *   do
    33  *   do
    34  *       <em>statement</em>
    34  *       <em>statement</em>
    35  *   while ( <em>expression</em> );
    35  *   while ( <em>expression</em> );
    36  * </pre>
    36  * </pre>
    37  *
    37  *
       
    38  * @deprecated Nashorn JavaScript script engine and APIs, and the jjs tool
       
    39  * are deprecated with the intent to remove them in a future release.
       
    40  *
    38  * @since 9
    41  * @since 9
    39  */
    42  */
       
    43 @Deprecated(since="11", forRemoval=true)
    40 public interface DoWhileLoopTree extends ConditionalLoopTree {
    44 public interface DoWhileLoopTree extends ConditionalLoopTree {
    41     /**
    45     /**
    42      * Returns the condition expression of this do-while statement.
    46      * Returns the condition expression of this do-while statement.
    43      *
    47      *
    44      * @return the condition expression
    48      * @return the condition expression