aboutsummaryrefslogtreecommitdiff
path: root/src/share/classes/javax/lang/model/util/Elements.java
diff options
context:
space:
mode:
authorjjh <none@none>2011-04-13 11:35:43 -0700
committerjjh <none@none>2011-04-13 11:35:43 -0700
commit1015ca8c8ad5adefff8a03cac606d35cdd3de423 (patch)
tree386f0cb34376b3a6ec910c0eb556c37dc3e1e8c6 /src/share/classes/javax/lang/model/util/Elements.java
parenta033f58d2c3d71329a2e2c4dbf4a6fe36b4538bd (diff)
7032975: API files in javax.annotation.processing need to be updated for references to JLS
7032972: API files in javax.tools need to updated for references to JVM Spec with editions/hyperlinks 7032978: API files in javax.tools need to be updated for references to JLS with editions/hyperlinks Summary: Removed URLs and 'edition' references Reviewed-by: jjg, darcy
Diffstat (limited to 'src/share/classes/javax/lang/model/util/Elements.java')
-rw-r--r--src/share/classes/javax/lang/model/util/Elements.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/share/classes/javax/lang/model/util/Elements.java b/src/share/classes/javax/lang/model/util/Elements.java
index 7c68b4ff..035fcfb3 100644
--- a/src/share/classes/javax/lang/model/util/Elements.java
+++ b/src/share/classes/javax/lang/model/util/Elements.java
@@ -95,7 +95,7 @@ public interface Elements {
* @param e the element being examined
* @return the documentation comment of the element, or {@code null}
* if there is none
- * @jls3 3.6 White Space
+ * @jls 3.6 White Space
*/
String getDocComment(Element e);
@@ -114,7 +114,7 @@ public interface Elements {
* @return the binary name
*
* @see TypeElement#getQualifiedName
- * @jls3 13.1 The Form of a Binary
+ * @jls 13.1 The Form of a Binary
*/
Name getBinaryName(TypeElement type);
@@ -210,8 +210,8 @@ public interface Elements {
* @param type the type of which the first method is a member
* @return {@code true} if and only if the first method overrides
* the second
- * @jls3 8.4.8 Inheritance, Overriding, and Hiding
- * @jls3 9.4.1 Inheritance and Overriding
+ * @jls 8.4.8 Inheritance, Overriding, and Hiding
+ * @jls 9.4.1 Inheritance and Overriding
*/
boolean overrides(ExecutableElement overrider, ExecutableElement overridden,
TypeElement type);