Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2018-03-08 12:48:14 +0000
committerNoopur Gupta2018-03-08 12:48:14 +0000
commitbe6db8a853a75e7d08b17e8b0d96810c363ec4c8 (patch)
treebfa791dbd9022572e3c1a7cbeafb7b1e9a42278c
parentf749fdd7f8c75db868e008654288d19d76752fa1 (diff)
downloadeclipse.jdt.core-be6db8a853a75e7d08b17e8b0d96810c363ec4c8.tar.gz
eclipse.jdt.core-be6db8a853a75e7d08b17e8b0d96810c363ec4c8.tar.xz
eclipse.jdt.core-be6db8a853a75e7d08b17e8b0d96810c363ec4c8.zip
Bug 532177: [10] Generate Javadoc wizard doesn't offer 10 as "JRE source
compatibility"
-rw-r--r--org.eclipse.jdt.core/.settings/.api_filters7
-rw-r--r--org.eclipse.jdt.core/model/org/eclipse/jdt/core/JavaCore.java8
2 files changed, 13 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/.settings/.api_filters b/org.eclipse.jdt.core/.settings/.api_filters
index de74420320..07141ae4c1 100644
--- a/org.eclipse.jdt.core/.settings/.api_filters
+++ b/org.eclipse.jdt.core/.settings/.api_filters
@@ -1142,6 +1142,13 @@
<message_argument value="VERSION_10"/>
</message_arguments>
</filter>
+ <filter id="1141899266">
+ <message_arguments>
+ <message_argument value="3.14 BETA_JAVA_18_3"/>
+ <message_argument value="3.13 BETA_JAVA_18_3"/>
+ <message_argument value="getAllVersions()"/>
+ </message_arguments>
+ </filter>
</resource>
<resource path="model/org/eclipse/jdt/core/JavaModelException.java" type="org.eclipse.jdt.core.JavaModelException">
<filter id="1141899266">
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 7dbce01f65..03c52ddaf8 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
@@ -5,6 +5,10 @@
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
+ * This is an implementation of an early-draft specification developed under the Java
+ * Community Process (JCP) and is made available for testing and evaluation purposes
+ * only. The code is not compatible with any specification of the JCP.
+ *
* Contributors:
* IBM Corporation - initial API and implementation
* IBM Corporation - added the following constants:
@@ -2962,11 +2966,11 @@ public final class JavaCore extends Plugin {
* Returns all {@link JavaCore}{@code #VERSION_*} levels.
*
* @return all available versions
- * @since 3.13
+ * @since 3.14 BETA_JAVA_18_3
*/
public static List<String> getAllVersions() {
return Arrays.asList(VERSION_CLDC_1_1, VERSION_1_1, VERSION_1_2, VERSION_1_3, VERSION_1_4, VERSION_1_5,
- VERSION_1_6, VERSION_1_7, VERSION_1_8, VERSION_9);
+ VERSION_1_6, VERSION_1_7, VERSION_1_8, VERSION_9, VERSION_10);
}
/**

Back to the top