Commit 90aec9a1 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick
Browse files

Fix @see links

Change-Id: I432c3e402ff6a97651959891a8581be229c4b958
parent 2915378e
...@@ -463,7 +463,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe ...@@ -463,7 +463,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException * @throws SecurityException
* if a security manager exists and it does not allow member * if a security manager exists and it does not allow member
* access. * access.
* @see #getDeclaredConstructor(Class...) * @see #getDeclaredConstructor(Class[])
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException, public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException,
...@@ -570,7 +570,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe ...@@ -570,7 +570,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException * @throws SecurityException
* if a security manager exists and it does not allow member * if a security manager exists and it does not allow member
* access. * access.
* @see #getConstructor(Class...) * @see #getConstructor(Class[])
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes) public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
...@@ -721,7 +721,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe ...@@ -721,7 +721,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException * @throws SecurityException
* if a security manager exists and it does not allow member * if a security manager exists and it does not allow member
* access. * access.
* @see #getMethod(String, Class...) * @see #getMethod(String, Class[])
*/ */
public Method getDeclaredMethod(String name, Class<?>... parameterTypes) public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
throws NoSuchMethodException, SecurityException { throws NoSuchMethodException, SecurityException {
...@@ -952,7 +952,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe ...@@ -952,7 +952,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException * @throws SecurityException
* if a security manager exists and it does not allow member * if a security manager exists and it does not allow member
* access. * access.
* @see #getDeclaredMethod(String, Class...) * @see #getDeclaredMethod(String, Class[])
*/ */
public Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException, public Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException,
SecurityException { SecurityException {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment