Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java20
1 files changed, 19 insertions, 1 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java
index 01ebce7ea7..544569fb45 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java
@@ -206,7 +206,7 @@ public final class TagElement extends ASTNode implements IDocElement {
* @since 3.18
*/
public static final String TAG_USES = "@uses"; //$NON-NLS-1$
-
+
/**
* Standard inline doc tag name (value {@value}).
*/
@@ -218,6 +218,24 @@ public final class TagElement extends ASTNode implements IDocElement {
public static final String TAG_VERSION = "@version"; //$NON-NLS-1$
/**
+ * Javadoc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_API_NOTE = "@apiNote"; //$NON-NLS-1$
+
+ /**
+ * Javadoc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_IMPL_SPEC = "@implSpec"; //$NON-NLS-1$
+
+ /**
+ * Javadoc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_IMPL_NOTE = "@implNote"; //$NON-NLS-1$
+
+ /**
* The tag name, or null if none; defaults to null.
*/
private String optionalTagName = null;

Back to the top