Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TagElement.java32
1 files changed, 31 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 fefb927774..71463bcf61 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
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2013 IBM Corporation and others.
+ * Copyright (c) 2004, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -112,8 +112,20 @@ public final class TagElement extends ASTNode implements IDocElement {
* Standard doc tag name (value {@value}).
*/
public static final String TAG_EXCEPTION = "@exception"; //$NON-NLS-1$
+
+ /**
+ * Standard doc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_HIDDEN = "@hidden"; //$NON-NLS-1$
/**
+ * Standard doc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_INDEX = "@index"; //$NON-NLS-1$
+
+ /**
* Standard inline doc tag name (value {@value}).
*/
public static final String TAG_INHERITDOC = "@inheritDoc"; //$NON-NLS-1$
@@ -144,6 +156,12 @@ public final class TagElement extends ASTNode implements IDocElement {
/**
* Standard doc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_PROVIDES = "@provides"; //$NON-NLS-1$
+
+ /**
+ * Standard doc tag name (value {@value}).
*/
public static final String TAG_RETURN = "@return"; //$NON-NLS-1$
@@ -174,10 +192,22 @@ public final class TagElement extends ASTNode implements IDocElement {
/**
* Standard doc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_SUMMARY = "@summary"; //$NON-NLS-1$
+
+ /**
+ * Standard doc tag name (value {@value}).
*/
public static final String TAG_THROWS = "@throws"; //$NON-NLS-1$
/**
+ * Standard doc tag name (value {@value}).
+ * @since 3.18
+ */
+ public static final String TAG_USES = "@uses"; //$NON-NLS-1$
+
+ /**
* Standard inline doc tag name (value {@value}).
*/
public static final String TAG_VALUE= "@value"; //$NON-NLS-1$

Back to the top