Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2019-09-20 10:23:39 +0000
committerSarika Sinha2019-09-23 03:52:28 +0000
commit448898f0ee6a96cdbc767c0d92174b23a153f97b (patch)
tree1d25f5c69d933b32738c896c548a5a1e4fa27b2b
parent9a673eda953a579a6fad0db94aa8a0f836f8d317 (diff)
downloadeclipse.jdt.core-448898f0ee6a96cdbc767c0d92174b23a153f97b.tar.gz
eclipse.jdt.core-448898f0ee6a96cdbc767c0d92174b23a153f97b.tar.xz
eclipse.jdt.core-448898f0ee6a96cdbc767c0d92174b23a153f97b.zip
Bug 551305 - Java Doc error in I20190919-1800I20190923-0615
Change-Id: Ic5b1d496404fe5ffd09a72401419fc2d676ae19e Signed-off-by: Sarika Sinha <sarika.sinha@in.ibm.com>
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/AST.java27
1 files changed, 14 insertions, 13 deletions
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 e4a3742a81..5cb5d46d39 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
@@ -485,15 +485,16 @@ public final class AST {
* <code>"1.3"</code> means the source code is as per JDK 1.3 and api level {@link #JLS3}.</li>
* <li><code>"1.4", "1.5", "1.6", "1.7" "1.8"</code> implies the respective source JDK levels 1.4, 1.5, 1.6, 1.7 and api level {@link #JLS4}.</li>
* <li><code>"1.8"</code> implies the respective source JDK level 1.8 and api level {@link #JLS8}.</li>
- * <li><code>"9", "10", "11" "12"</code> implies the respective JDK levels 9, 10, 11 and 12
- * and api levels {@link #JLS9}, {@link #JLS10}, {@link #JLS11}, and {@link #JLS12}.</li>
- * Additional legal values may be added later.
- * </li>
+ * <li><code>"9", "10", "11", "12" and "13"</code> implies the respective JDK levels 9, 10, 11, 12 and 13
+ * and api levels {@link #JLS9}, {@link #JLS10}, {@link #JLS11}, {@link #JLS12} and {@link #JLS13}.</li>
+ * <li>Additional legal values may be added later.</li>
* </ul>
+ * </li>
* <li><code>"org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures"</code> -
* indicates whether the preview is enabled or disabled
* legal values are <code>"enabled"</code> and <code>"disabled"</code> implying preview enabled and disabled respectively.
* preview enabling has an effect only with the latest ast level.
+ * </li>
* </ul>
* <p>
* </p>
@@ -1020,16 +1021,16 @@ public final class AST {
* <code>"1.3"</code> means the source code is as per JDK 1.3 and api level {@link #JLS3}.</li>
* <li><code>"1.4", "1.5", "1.6", "1.7" "1.8"</code> implies the respective source JDK levels 1.4, 1.5, 1.6, 1.7 and api level {@link #JLS4}.</li>
* <li><code>"1.8"</code> implies the respective source JDK level 1.8 and api level {@link #JLS8}.</li>
- * <li><code>"9", "10", "11" "12"</code> implies the respective JDK levels 9, 10, 11 and 12
- * and api levels {@link #JLS9}, {@link #JLS10}, {@link #JLS11}, and {@link #JLS12}.</li>
- * Additional legal values may be added later.
- * </li>
+ * <li><code>"9", "10", "11", "12" and "13"</code> implies the respective JDK levels 9, 10, 11, 12 and 13
+ * and api levels {@link #JLS9}, {@link #JLS10}, {@link #JLS11}, {@link #JLS12} and {@link #JLS13}.</li>
+ * <li>Additional legal values may be added later.</li>
* </ul>
- * <li><code>"org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures"</code> -
- * indicates whether the preview is enabled or disabled
- * legal values are <code>"enabled"</code> and <code>"disabled"</code> implying preview enabled and disabled respectively.
- * preview enabling has an effect only with the latest ast level.
- * </ul>
+ * <li><code>"org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures"</code> -
+ * indicates whether the preview is enabled or disabled
+ * legal values are <code>"enabled"</code> and <code>"disabled"</code> implying preview enabled and disabled respectively.
+ * preview enabling has an effect only with the latest ast level.
+ * </li>
+ * </ul>
* <p>
* </p>
*

Back to the top