Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 230064 Details for
Bug 403810
[1.8] @since tags need adjusting.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
New Patch
changes.patch (text/plain), 29.24 KB, created by
shankha banerjee
on 2013-04-24 04:52:40 EDT
(
hide
)
Description:
New Patch
Filename:
MIME Type:
Creator:
shankha banerjee
Created:
2013-04-24 04:52:40 EDT
Size:
29.24 KB
patch
obsolete
>diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java >index 6fac35d..e8091de 100644 >--- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java >+++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/core/compiler/IProblem.java >@@ -950,7 +950,7 @@ > /** @since 3.3 */ > int NonNullLocalVariableComparisonYieldsFalse = Internal + 458; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int PotentialNullUnboxing = Internal + 459; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NullUnboxing = Internal + 461; > >@@ -1251,5 +1251,5 @@ > int MethodNameClashHidden = MethodRelated + 584; > >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int UnsafeElementTypeConversion = TypeRelated + 585; > >@@ -1406,7 +1406,7 @@ > /** @since 3.4 */ > int UnusedTypeArgumentsForConstructorInvocation = MethodRelated + 660; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int UnusedTypeParameter = TypeRelated + 661; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int IllegalArrayOfUnionType = TypeRelated + 662; > /** @since 3.9 BETA_JAVA8 */ >@@ -1421,11 +1421,11 @@ > * Null analysis for other kinds of expressions, syntactically nonnull > */ >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NonNullExpressionComparisonYieldsFalse = Internal + 670; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int RedundantNullCheckOnNonNullExpression = Internal + 671; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NullExpressionReference = Internal + 672; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int PotentialNullExpressionReference = Internal + 673; > >@@ -1634,5 +1634,5 @@ > /** @since 3.8 */ > int IllegalAnnotationForBaseType = TypeRelated + 923; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NullableFieldReference = FieldRelated + 924; > /** @since 3.8 */ >@@ -1654,17 +1654,17 @@ > /** @since 3.8 */ > int RequiredNonNullButProvidedSpecdNullable = Internal + 933; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int UninitializedNonNullField = FieldRelated + 934; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int UninitializedNonNullFieldHintMissingDefault = FieldRelated + 935; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NonNullMessageSendComparisonYieldsFalse = Internal + 936; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int RedundantNullCheckOnNonNullSpecdField = Internal + 937; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int NonNullSpecdFieldComparisonYieldsFalse = Internal + 938; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int ConflictingNullAnnotations = MethodRelated + 939; >- /** @since 3.9 */ >+ /** @since 3.9 BETA_JAVA8 */ > int ConflictingInheritedNullAnnotations = MethodRelated + 940; > >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java >index 20781c3..660201e 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java >@@ -188,5 +188,5 @@ > * </p> > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int JLS8 = 8; >@@ -1450,5 +1450,5 @@ > * @exception UnsupportedOperationException if this operation is used > * in a JLS2, JLS3 or JLS4 AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public ExtraDimension newExtraDimension() { >@@ -1601,5 +1601,5 @@ > * @return a new unparented lambda expression node > * @exception UnsupportedOperationException if this operation is used in a JLS2, JLS3 or JLS4 AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public LambdaExpression newLambdaExpression() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java >index d631372..76ad87b 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTMatcher.java >@@ -855,5 +855,5 @@ > * <code>false</code> if they do not match or the other object has a > * different node type or is <code>null</code> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean match(ExtraDimension node, Object other) { >@@ -1210,5 +1210,5 @@ > * <code>false</code> if they do not match or the other object has a > * different node type or is <code>null</code> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean match(LambdaExpression node, Object other) { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java >index 2a87561..6bba4f5 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTNode.java >@@ -839,5 +839,5 @@ > * > * @see ExtraDimension >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int EXTRA_DIMENSION = 85; >@@ -847,5 +847,5 @@ > * <code>LambdaExpression</code>. > * @see LambdaExpression >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int LAMBDA_EXPRESSION = 86; >@@ -1921,5 +1921,5 @@ > * > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final void unsupportedIn2_3_4() { >@@ -1954,5 +1954,5 @@ > * > * @exception UnsupportedOperationException if this operation is used in an AST later than JLS4 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > // In API Javadocs, add: * @deprecated In the JLS8 API, this method is replaced by {@link #replacement()}. >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTVisitor.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTVisitor.java >index d519f2a..681e325 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTVisitor.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ASTVisitor.java >@@ -642,5 +642,5 @@ > * visited, and <code>false</code> if the children of this node should > * be skipped >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean visit(ExtraDimension node) { >@@ -843,5 +843,5 @@ > * visited, and <code>false</code> if the children of this node should > * be skipped >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean visit(LambdaExpression node) { >@@ -1994,5 +1994,5 @@ > * > * @param node the node to visit >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public void endVisit(ExtraDimension node) { >@@ -2127,5 +2127,5 @@ > * > * @param node the node to visit >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public void endVisit(LambdaExpression node) { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnnotatableType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnnotatableType.java >index 2350a7c..c62d510 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnnotatableType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AnnotatableType.java >@@ -23,5 +23,5 @@ > * AnnotatableType. For the list of types extending AnnotatableType, see {@link Type}.</p> > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public abstract class AnnotatableType extends Type { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayType.java >index ef35d98..cd1dd83 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ArrayType.java >@@ -43,5 +43,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -58,5 +58,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -118,5 +118,5 @@ > /* (omit javadoc for this method) > * Method declared on AnnotatableType. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalAnnotationsProperty() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ExtraDimension.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ExtraDimension.java >index 32db075..306abe9 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ExtraDimension.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/ExtraDimension.java >@@ -32,5 +32,5 @@ > * </pre> > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @noinstantiate This class is not intended to be instantiated by clients. > */ >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/LambdaExpression.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/LambdaExpression.java >index 9c0dcbd..a7854ae 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/LambdaExpression.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/LambdaExpression.java >@@ -32,5 +32,5 @@ > *<p>The Body can be either a {@link Block} or an {@link Expression}.</p> > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @noinstantiate This class is not intended to be instantiated by clients > */ >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java >index 9256b4b..df84b40 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java >@@ -122,5 +122,5 @@ > /** > * The "extraDimensions2" structural property of this node type (element type: {@link ExtraDimension}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor EXTRA_DIMENSIONS2_PROPERTY = >@@ -143,5 +143,5 @@ > /** > * The "receiverType" structural property of this node type (child type: {@link AnnotatableType}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildPropertyDescriptor RECEIVER_TYPE_PROPERTY = >@@ -150,5 +150,5 @@ > /** > * The "receiverQualifier" structural property of this node type (child type: {@link SimpleName}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildPropertyDescriptor RECEIVER_QUALIFIER_PROPERTY = >@@ -165,5 +165,5 @@ > /** > * The "thrownExceptionTypes" structural property of this node type (element type: {@link Type}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor THROWN_EXCEPTION_TYPES_PROPERTY = >@@ -197,5 +197,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -280,5 +280,5 @@ > * The explicit receiver type, or <code>null</code> if none. > * Defaults to none. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private AnnotatableType optionalReceiverType = null; >@@ -287,5 +287,5 @@ > * Qualifying name of the explicit </code>this</code> parameter, or <code>null</code> if none. > * Defaults to none. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private SimpleName optionalReceiverQualifier = null; >@@ -336,5 +336,5 @@ > * (see constructor). > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private ASTNode.NodeList extraDimensions = null; >@@ -353,5 +353,5 @@ > * (see constructor). > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private ASTNode.NodeList thrownExceptionTypes = null; >@@ -733,5 +733,5 @@ > * @return the receiver type or <code>null</code> if receiver is not declared explicitly > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public AnnotatableType getReceiverType() { >@@ -748,5 +748,5 @@ > * @param receiverType type of the explicit receiver parameter, or <code>null</code> if there is none > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public void setReceiverType(AnnotatableType receiverType) { >@@ -766,5 +766,5 @@ > * @returns the qualifying name or <code>null</code> if a qualifier was not specified > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public SimpleName getReceiverQualifier() { >@@ -778,5 +778,5 @@ > * @param receiverQualifier explicit receiver parameter to be added to the method declaration > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public void setReceiverQualifier(SimpleName receiverQualifier) { >@@ -843,5 +843,5 @@ > * @exception UnsupportedOperationException if this operation is used in > * a JLS8 or later AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > /*package*/ List internalThrownExceptions() { >@@ -861,5 +861,5 @@ > * @exception UnsupportedOperationException if this operation is used > * in a JLS2, JLS3 or JLS4 AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public List thrownExceptionTypes() { >@@ -1086,5 +1086,5 @@ > * @return the live list of extra dimensions with optional annotations (element type: {@link ExtraDimension}) > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public List extraDimensions() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Modifier.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Modifier.java >index f617652..b30efd0 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Modifier.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Modifier.java >@@ -102,5 +102,5 @@ > * internal and is not specified in the Java Virtual Machine Specification. > * </p> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ModifierKeyword DEFAULT_KEYWORD = new ModifierKeyword("default", DEFAULT);//$NON-NLS-1$ >@@ -318,5 +318,5 @@ > * specified in the Java Virtual Machine Specification. > * </p> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int DEFAULT = 0x10000; >@@ -479,5 +479,5 @@ > * @return <code>true</code> if the <code>DEFAULT</code> bit is set > * and <code>false</code> otherwise >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static boolean isDefault(int flags) { >@@ -709,5 +709,5 @@ > * Answer true if the receiver is the default modifier, false otherwise. > * @return true if the receiver is the default modifier, false otherwise >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean isDefault() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrimitiveType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrimitiveType.java >index 38fe8dc..948c32c 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrimitiveType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrimitiveType.java >@@ -161,5 +161,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -183,5 +183,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -236,5 +236,5 @@ > /* (omit javadoc for this method) > * Method declared on AnnotatableType. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalAnnotationsProperty() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/QualifiedType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/QualifiedType.java >index 0a099c5..1c7a722 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/QualifiedType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/QualifiedType.java >@@ -64,5 +64,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -85,5 +85,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -152,5 +152,5 @@ > /* (omit javadoc for this method) > * Method declared on AnnotatableType. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalAnnotationsProperty() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SimpleType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SimpleType.java >index d0ec531..b0d7b7b 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SimpleType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SimpleType.java >@@ -41,5 +41,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -63,5 +63,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -122,5 +122,5 @@ > /* (omit javadoc for this method) > * Method declared on AnnotatableType. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalAnnotationsProperty() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java >index ed20968..1045a6a 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/SingleVariableDeclaration.java >@@ -63,5 +63,5 @@ > * The "varargsAnnotations" structural property of variable arguments of this node type (element type: {@link Annotation}) > * (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor VARARGS_ANNOTATIONS_PROPERTY = >@@ -94,5 +94,5 @@ > /** > * The "extraDimensions2" structural property of this node type (element type: {@link ExtraDimension}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor EXTRA_DIMENSIONS2_PROPERTY = >@@ -126,5 +126,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -208,5 +208,5 @@ > * (see constructor). > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private ASTNode.NodeList varargsAnnotations = null; >@@ -259,5 +259,5 @@ > /* (omit javadoc for this method) > * Method declared on VariableDeclaration. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalExtraDimensions2Property() { >@@ -611,5 +611,5 @@ > * @exception UnsupportedOperationException if this operation is used > * in a JLS2, JLS3 or JLS4 AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public List varargsAnnotations() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Type.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Type.java >index 8b4e9bc..336deda 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Type.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Type.java >@@ -217,5 +217,5 @@ > * <code>false</code> otherwise > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public boolean isAnnotatable() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeParameter.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeParameter.java >index bed3dc1..1db6bf4 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeParameter.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeParameter.java >@@ -34,5 +34,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -61,5 +61,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -297,5 +297,5 @@ > * @exception UnsupportedOperationException if this operation is used > * in a JLS2, JLS3 or JLS4 AST >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public List annotations() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclaration.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclaration.java >index c141404..c13bd9b 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclaration.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclaration.java >@@ -52,5 +52,5 @@ > * (see constructor). > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > ASTNode.NodeList extraDimensions = null; >@@ -151,5 +151,5 @@ > * > * @return the property descriptor >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > abstract ChildListPropertyDescriptor internalExtraDimensions2Property(); >@@ -160,5 +160,5 @@ > * > * @return the property descriptor >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public final ChildListPropertyDescriptor getExtraDimensions2Property() { >@@ -299,5 +299,5 @@ > * Internal synonym for deprecated method. Used to avoid > * deprecation warnings. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final void internalSetExtraDimensions(int dimensions) { >@@ -320,5 +320,5 @@ > * @return the live list of extra dimensions with optional annotations (element type: {@link ExtraDimension}) > * @exception UnsupportedOperationException if this operation is used below JLS8 >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public List extraDimensions() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationFragment.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationFragment.java >index 866436d..7d990e9 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationFragment.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/VariableDeclarationFragment.java >@@ -49,5 +49,5 @@ > /** > * The "extraDimensions2" structural property of this node type (element type: {@link ExtraDimension}) (added in JLS8 API). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor EXTRA_DIMENSIONS2_PROPERTY = >@@ -73,5 +73,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -143,5 +143,5 @@ > /* (omit javadoc for this method) > * Method declared on VariableDeclaration. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalExtraDimensions2Property() { >diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/WildcardType.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/WildcardType.java >index ded345a..93fd054 100644 >--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/WildcardType.java >+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/WildcardType.java >@@ -38,5 +38,5 @@ > /** > * The "annotations" structural property of this node type (element type: {@link Annotation}). >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final ChildListPropertyDescriptor ANNOTATIONS_PROPERTY = >@@ -65,5 +65,5 @@ > * {@link StructuralPropertyDescriptor}), > * or null if uninitialized. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > private static final List PROPERTY_DESCRIPTORS_8_0; >@@ -134,5 +134,5 @@ > /* (omit javadoc for this method) > * Method declared on AnnotatableType. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > final ChildListPropertyDescriptor internalAnnotationsProperty() { >diff --git a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java >index 7ea0ead..87600c7 100644 >--- a/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java >+++ b/org.eclipse.jdt.core/formatter/org/eclipse/jdt/core/formatter/DefaultCodeFormatterConstants.java >@@ -625,5 +625,5 @@ > * @see #NEXT_LINE_SHIFTED > * @see #NEXT_LINE_ON_WRAP >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final String FORMATTER_BRACE_POSITION_FOR_LAMBDA_BODY = JavaCore.PLUGIN_ID + ".formatter.brace_position_for_lambda_body"; //$NON-NLS-1$ >@@ -2031,5 +2031,5 @@ > * @see JavaCore#INSERT > * @see JavaCore#DO_NOT_INSERT >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final String FORMATTER_INSERT_SPACE_AFTER_LAMBDA_ARROW = JavaCore.PLUGIN_ID + ".formatter.insert_space_after_lambda_arrow"; //$NON-NLS-1$ >@@ -2968,5 +2968,5 @@ > * @see JavaCore#INSERT > * @see JavaCore#DO_NOT_INSERT >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final String FORMATTER_INSERT_SPACE_BEFORE_LAMBDA_ARROW = JavaCore.PLUGIN_ID + ".formatter.insert_space_before_lambda_arrow"; //$NON-NLS-1$ >diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionContext.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionContext.java >index aacdc47..7c2df12 100644 >--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionContext.java >+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/CompletionContext.java >@@ -1,4 +1,4 @@ > /******************************************************************************* >- * Copyright (c) 2005, 2012 IBM Corporation and others. >+ * Copyright (c) 2005, 2013 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 >@@ -68,5 +68,5 @@ > * @see #getTokenLocation() > * >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int TL_CONSTRUCTOR_START = 4; >diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Flags.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Flags.java >index ce552b4..07fc92c 100644 >--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Flags.java >+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/Flags.java >@@ -162,5 +162,5 @@ > * Virtual Machine specification. > * </p> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int AccDefaultMethod = ExtraCompilerModifiers.AccDefaultMethod; >@@ -173,5 +173,5 @@ > * Virtual Machine specification. > * </p> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static final int AccAnnotationDefault = ClassFileConstants.AccAnnotationDefault; >@@ -393,5 +393,5 @@ > * @return <code>true</code> if the <code>AccDefaultMethod</code> flag is included > * @see #AccDefaultMethod >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static boolean isDefaultMethod(int flags) { >@@ -405,5 +405,5 @@ > * @return <code>true</code> if the <code>AccAnnotationDefault</code> flag is included > * @see #AccAnnotationDefault >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > public static boolean isAnnnotationDefault(int flags) { >diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaCore.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaCore.java >index 03934cc..6d8ad59 100644 >--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaCore.java >+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaCore.java >@@ -529,5 +529,5 @@ > * <dt>Default:</dt><dd><code>"ignore"</code></dd> > * </dl> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @category CompilerOptionID > */ >@@ -1704,5 +1704,5 @@ > * <dt>Default:</dt><dd><code>"disabled"</code></dd> > * </dl> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @category CompilerOptionID > */ >@@ -1724,5 +1724,5 @@ > * <dt>Default:</dt><dd><code>"disabled"</code></dd> > * </dl> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @category CompilerOptionID > */ >@@ -1749,5 +1749,5 @@ > * <dt>Default:</dt><dd><code>"warning"</code></dd> > * </dl> >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @category CompilerOptionID > */ >@@ -2647,5 +2647,5 @@ > /** > * Configurable option value: {@value}. >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > * @category OptionValue > */ >diff --git a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/compiler/ITerminalSymbols.java b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/compiler/ITerminalSymbols.java >index 9f3caae..8944828 100644 >--- a/org.eclipse.jdt.core/model/org/eclipse/jdt/core/compiler/ITerminalSymbols.java >+++ b/org.eclipse.jdt.core/model/org/eclipse/jdt/core/compiler/ITerminalSymbols.java >@@ -1,4 +1,4 @@ > /******************************************************************************* >- * Copyright (c) 2000, 2012 IBM Corporation and others. >+ * Copyright (c) 2000, 2013 IBM Corporation and others. > * All rights reserved. This program and the accompanying materials > * are made available under the terms of the Eclipse Public License v1.0 >@@ -170,9 +170,9 @@ > > /** >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > int TokenNameARROW = 405; > /** >- * @since 3.9 >+ * @since 3.9 BETA_JAVA8 > */ > int TokenNameCOLON_COLON = 406;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 403810
:
230064
|
230072
|
230103