Skip to content

Commit b81f2f1

Browse files
committedJun 11, 2020
8245620: Improve Annotation.annotationType() documentation
Reviewed-by: alanb, prappo
1 parent 6341f8c commit b81f2f1

File tree

1 file changed

+15
-9
lines changed

1 file changed

+15
-9
lines changed
 

‎src/java.base/share/classes/java/lang/annotation/Annotation.java

+15-9
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* an annotation type. Also note that this interface does not itself
3232
* define an annotation type.
3333
*
34-
* More information about annotation types can be found in section 9.6 of
34+
* More information about annotation types can be found in section {@jls 9.6} of
3535
* <cite>The Java&trade; Language Specification</cite>.
3636
*
3737
* The {@link java.lang.reflect.AnnotatedElement} interface discusses
@@ -72,7 +72,7 @@ public interface Annotation {
7272
*
7373
* <li>Two corresponding array typed members {@code x} and {@code y}
7474
* are considered equal if {@code Arrays.equals(x, y)}, for the
75-
* appropriate overloading of {@link java.util.Arrays#equals}.
75+
* appropriate overloading of {@link java.util.Arrays#equals Arrays.equals}.
7676
* </ul>
7777
*
7878
* @return true if the specified object represents an annotation
@@ -81,17 +81,15 @@ public interface Annotation {
8181
boolean equals(Object obj);
8282

8383
/**
84-
* Returns the hash code of this annotation, as defined below:
84+
* Returns the hash code of this annotation.
8585
*
8686
* <p>The hash code of an annotation is the sum of the hash codes
87-
* of its members (including those with default values), as defined
88-
* below:
87+
* of its members (including those with default values).
8988
*
9089
* The hash code of an annotation member is (127 times the hash code
9190
* of the member-name as computed by {@link String#hashCode()}) XOR
92-
* the hash code of the member-value, as defined below:
93-
*
94-
* <p>The hash code of a member-value depends on its type:
91+
* the hash code of the member-value.
92+
* The hash code of a member-value depends on its type as defined below:
9593
* <ul>
9694
* <li>The hash code of a primitive value <i>{@code v}</i> is equal to
9795
* <code><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</code>, where
@@ -121,7 +119,7 @@ public interface Annotation {
121119
* of the representation are implementation-dependent, but the following
122120
* may be regarded as typical:
123121
* <pre>
124-
* &#064;com.acme.util.Name(first=Alfred, middle=E., last=Neuman)
122+
* &#064;com.example.Name(first="Duke", middle="of", last="Java")
125123
* </pre>
126124
*
127125
* @return a string representation of this annotation
@@ -130,7 +128,15 @@ public interface Annotation {
130128

131129
/**
132130
* Returns the annotation type of this annotation.
131+
*
132+
* @apiNote Implementation-dependent classes are used to provide
133+
* the implementations of annotations. Therefore, calling {@link
134+
* Object#getClass getClass} on an annotation will return an
135+
* implementation-dependent class. In contrast, this method will
136+
* reliably return the annotation type of the annotation.
137+
*
133138
* @return the annotation type of this annotation
139+
* @see Enum#getDeclaringClass
134140
*/
135141
Class<? extends Annotation> annotationType();
136142
}

0 commit comments

Comments
 (0)
Please sign in to comment.