8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
Reviewed-by: alanb, chegar, lancea
This commit is contained in:
parent
a5d096be2e
commit
fff2106bbc
@ -83,6 +83,6 @@
|
||||
|
||||
/**
|
||||
* Contains the linker for ordinary Java objects.
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
package jdk.dynalink.beans;
|
||||
|
@ -111,6 +111,6 @@
|
||||
* implement the {@link jdk.dynalink.linker.GuardingTypeConverterFactory}
|
||||
* interface to provide the logic for these conversions.
|
||||
* </p>
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
package jdk.dynalink.linker;
|
||||
|
@ -87,6 +87,6 @@
|
||||
* by providing basic implementations of some classes as well as various
|
||||
* utilities.
|
||||
* </p>
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
package jdk.dynalink.linker.support;
|
||||
|
@ -85,6 +85,6 @@
|
||||
* <p>Contains classes that make using Dynalink more convenient by providing
|
||||
* basic implementations of some classes as well as various utilities.
|
||||
* </p>
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
package jdk.dynalink.support;
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>expression</em> [ <em>index</em> ]
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ArrayAccessTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -30,7 +30,7 @@ import java.util.List;
|
||||
/**
|
||||
* Represents ECMAScript array literal expression.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ArrayLiteralTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>variable</em> = <em>expression</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface AssignmentTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>leftOperand</em> <em>operator</em> <em>rightOperand</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface BinaryTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||
* { <em>statements</em> }
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface BlockTree extends StatementTree {
|
||||
/**
|
||||
|
@ -35,7 +35,7 @@ package jdk.nashorn.api.tree;
|
||||
* break <em>label</em> ;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface BreakTree extends GotoTree {
|
||||
/**
|
||||
|
@ -39,7 +39,7 @@ import java.util.List;
|
||||
* <em>statements</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface CaseTree extends Tree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>block</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface CatchTree extends Tree {
|
||||
/**
|
||||
|
@ -31,7 +31,7 @@ import java.util.List;
|
||||
* Represents the abstract syntax tree for compilation units (source
|
||||
* files)
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface CompilationUnitTree extends Tree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>variable</em> <em>operator</em> <em>expression</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface CompoundAssignmentTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>condition</em> ? <em>trueExpression</em> : <em>falseExpression</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ConditionalExpressionTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* A mixin for conditional "loop" statements.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ConditionalLoopTree extends LoopTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* continue <em>label</em> ;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ContinueTree extends GotoTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>debugger;</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface DebuggerTree extends StatementTree {
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ package jdk.nashorn.api.tree;
|
||||
* <p>Line terminator is as defined in ECMAScript specification which is one
|
||||
* of { \u000A, \u000B, \u2028, \u2029 }.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface Diagnostic {
|
||||
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* Interface for receiving diagnostics from Nashorn parser.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public interface DiagnosticListener {
|
||||
|
@ -35,7 +35,7 @@ package jdk.nashorn.api.tree;
|
||||
* while ( <em>expression</em> );
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface DoWhileLoopTree extends ConditionalLoopTree {
|
||||
/**
|
||||
|
@ -33,6 +33,6 @@ package jdk.nashorn.api.tree;
|
||||
* ;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface EmptyStatementTree extends StatementTree {}
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* A tree node to stand in for a malformed expression.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ErroneousTree extends ExpressionTree {
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>expression</em> ;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ExpressionStatementTree extends StatementTree {
|
||||
/**
|
||||
|
@ -29,6 +29,6 @@ package jdk.nashorn.api.tree;
|
||||
* A tree node used as the base class for the different types of
|
||||
* expressions.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ExpressionTree extends Tree {}
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>statement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ForInLoopTree extends LoopTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>statement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ForLoopTree extends ConditionalLoopTree {
|
||||
/**
|
||||
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||
* this . <em>identifier</em> ( <em>arguments</em> )
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface FunctionCallTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||
* <em>body</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface FunctionDeclarationTree extends StatementTree {
|
||||
/**
|
||||
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||
* <em>body</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface FunctionExpressionTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -31,7 +31,7 @@ package jdk.nashorn.api.tree;
|
||||
* type serves as a super interface for {@link BreakTree} and
|
||||
* {@link ContinueTree}.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface GotoTree extends StatementTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>name</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface IdentifierTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -39,7 +39,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>elseStatement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface IfTree extends StatementTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>expression</em> instanceof <em>type</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface InstanceOfTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>label</em> : <em>statement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface LabeledStatementTree extends StatementTree {
|
||||
/**
|
||||
|
@ -29,7 +29,7 @@ package jdk.nashorn.api.tree;
|
||||
* Provides methods to convert between character positions and line numbers
|
||||
* for a compilation unit.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface LineMap {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>value</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface LiteralTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* A mixin for "loop" statements.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface LoopTree extends StatementTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>expression</em> . <em>identifier</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface MemberSelectTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -35,7 +35,7 @@ package jdk.nashorn.api.tree;
|
||||
* new <em>identifier</em> ( <em>arguments</em> )
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface NewTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -30,7 +30,7 @@ import java.util.List;
|
||||
/**
|
||||
* Represents ECMAScript object literal expression.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ObjectLiteralTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* ( <em>expression</em> )
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ParenthesizedTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -36,7 +36,7 @@ import jdk.nashorn.api.scripting.ScriptObjectMirror;
|
||||
/**
|
||||
* Represents nashorn ECMAScript parser instance.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface Parser {
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* To represent property setting in an object literal tree.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface PropertyTree extends Tree {
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ package jdk.nashorn.api.tree;
|
||||
/**
|
||||
* Represents regular expression literal in the source code.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface RegExpLiteralTree extends Tree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* return <em>expression</em>;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ReturnTree extends StatementTree {
|
||||
/**
|
||||
|
@ -29,7 +29,7 @@ package jdk.nashorn.api.tree;
|
||||
* A tree node used as the base class for the different kinds of
|
||||
* statements.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface StatementTree extends Tree {
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ import java.util.List;
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface SwitchTree extends StatementTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* throw <em>expression</em>;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface ThrowTree extends StatementTree {
|
||||
/**
|
||||
|
@ -31,7 +31,7 @@ package jdk.nashorn.api.tree;
|
||||
* <p><b>WARNING:</b> This interface and its sub-interfaces are
|
||||
* subject to change as the ECMAScript programming language evolves.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface Tree {
|
||||
|
||||
|
@ -51,7 +51,7 @@ package jdk.nashorn.api.tree;
|
||||
* methods. Use {@code Void} for visitors that do not need an
|
||||
* additional parameter.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface TreeVisitor<R,P> {
|
||||
/**
|
||||
|
@ -39,7 +39,7 @@ import java.util.List;
|
||||
* <em>finallyBlock</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface TryTree extends StatementTree {
|
||||
/**
|
||||
|
@ -36,7 +36,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>expression</em> <em>operator</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface UnaryTree extends ExpressionTree {
|
||||
/**
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* {@linkplain TreeVisitor tree visitor} to indicate that the
|
||||
* visitor was created for a prior version of the language.
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public class UnknownTreeException extends RuntimeException {
|
||||
|
||||
|
@ -33,7 +33,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>var</em> <em>name</em> <em>initializer</em> ;
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface VariableTree extends StatementTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>statement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface WhileLoopTree extends ConditionalLoopTree {
|
||||
/**
|
||||
|
@ -34,7 +34,7 @@ package jdk.nashorn.api.tree;
|
||||
* <em>statement</em>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
public interface WithTree extends StatementTree {
|
||||
/**
|
||||
|
@ -68,7 +68,7 @@
|
||||
* </code>
|
||||
* </pre>
|
||||
*
|
||||
* @since 1.9
|
||||
* @since 9
|
||||
*/
|
||||
package jdk.nashorn.api.tree;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user