diff --git a/langtools/src/share/classes/com/sun/javadoc/Tag.java b/langtools/src/share/classes/com/sun/javadoc/Tag.java
index 2e129f50505..1d8c5907be2 100644
--- a/langtools/src/share/classes/com/sun/javadoc/Tag.java
+++ b/langtools/src/share/classes/com/sun/javadoc/Tag.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -54,36 +54,44 @@ public interface Tag {
* {@link}, the curly brackets
* are not part of the name, so in this example the name
* would be simply @link.
+ *
+ * @return the name of this tag
*/
String name();
/**
* Return the containing {@link Doc} of this Tag element.
+ *
+ * @return the containing {@link Doc} of this Tag element
*/
Doc holder();
/**
* Return the kind of this tag.
- * similar or synonymous tags. For most tags,
+ * For most tags,
* kind() == name();
* the following table lists those cases where there is more
* than one tag of a given kind:
*
- *
| kind() | name() |
|---|---|
| @throws | @throws |
| @throws | @exception |
| @see | @see |
| @see | @link |
| @see | @linkplain |
| @serial | @serial |
| @serial | @serialData |
| {@code kind() } | {@code name() } |
|---|---|
| {@code @throws } | {@code @throws } |
| {@code @throws } | {@code @exception } |
| {@code @see } | {@code @see } |
| {@code @see } | {@code @link } |
| {@code @see } | {@code @linkplain } |
| {@code @serial } | {@code @serial } |
| {@code @serial } | {@code @serialData } |