diff options
author | Vikas Chandra | 2019-01-28 06:08:59 +0000 |
---|---|---|
committer | Vikas Chandra | 2019-01-28 06:08:59 +0000 |
commit | ee7324ba0a51032ce221abeebeb246b857bfaee7 (patch) | |
tree | 886443f82e803f12de066499b17964f77a23f4b5 | |
parent | 7bcaed2a7db1cbdb355109ed521d6a8486697045 (diff) | |
download | eclipse.jdt.core-ee7324ba0a51032ce221abeebeb246b857bfaee7.tar.gz eclipse.jdt.core-ee7324ba0a51032ce221abeebeb246b857bfaee7.tar.xz eclipse.jdt.core-ee7324ba0a51032ce221abeebeb246b857bfaee7.zip |
Change-Id: Ie2b7c0e4fc7ba3dab4cffa05175aff076f68cc60
Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
-rw-r--r-- | org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java index 64077fde76..ad9af1329e 100644 --- a/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java +++ b/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/JavadocTagConstants.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2018 IBM Corporation and others. + * Copyright (c) 2000, 2019 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 @@ -8,6 +8,10 @@ * * SPDX-License-Identifier: EPL-2.0 * + * 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 *******************************************************************************/ @@ -157,6 +161,8 @@ public interface JavadocTagConstants { // since 10 {}, // since 11 + {}, + //since 12 {} }; public static final char[][][] INLINE_TAGS = { @@ -183,6 +189,8 @@ public interface JavadocTagConstants { // since 10 {}, // since 11 + {}, + //since 12 {} }; public final static int INLINE_TAGS_LENGTH = INLINE_TAGS.length; |