summaryrefslogtreecommitdiffstats
path: root/luni/src/main/java
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@android.com>2011-01-12 00:04:20 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-01-12 00:04:20 -0800
commit68095f6a01a2e252413aac649d56cf6dc3c62409 (patch)
treed937857b614e93d4a6a37793bc45881cf4b559d9 /luni/src/main/java
parent99d1e354bc4faaeac8a6de338c7e56964af030ea (diff)
parent6ead9d748abcf4e7a0b3359ffac24bad8168f284 (diff)
downloadlibcore-68095f6a01a2e252413aac649d56cf6dc3c62409.zip
libcore-68095f6a01a2e252413aac649d56cf6dc3c62409.tar.gz
libcore-68095f6a01a2e252413aac649d56cf6dc3c62409.tar.bz2
am 6ead9d74: am 6e35a860: Merge "Fix @see links" into gingerbread
* commit '6ead9d748abcf4e7a0b3359ffac24bad8168f284': Fix @see links
Diffstat (limited to 'luni/src/main/java')
-rw-r--r--luni/src/main/java/java/lang/Class.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/luni/src/main/java/java/lang/Class.java b/luni/src/main/java/java/lang/Class.java
index 8ade55d..ff1a5d3 100644
--- a/luni/src/main/java/java/lang/Class.java
+++ b/luni/src/main/java/java/lang/Class.java
@@ -459,7 +459,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException
* if a security manager exists and it does not allow member
* access.
- * @see #getDeclaredConstructor(Class...)
+ * @see #getDeclaredConstructor(Class[])
*/
@SuppressWarnings("unchecked")
public Constructor<T> getConstructor(Class<?>... parameterTypes) throws NoSuchMethodException,
@@ -566,7 +566,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException
* if a security manager exists and it does not allow member
* access.
- * @see #getConstructor(Class...)
+ * @see #getConstructor(Class[])
*/
@SuppressWarnings("unchecked")
public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
@@ -716,7 +716,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException
* if a security manager exists and it does not allow member
* access.
- * @see #getMethod(String, Class...)
+ * @see #getMethod(String, Class[])
*/
public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
throws NoSuchMethodException, SecurityException {
@@ -967,7 +967,7 @@ public final class Class<T> implements Serializable, AnnotatedElement, GenericDe
* @throws SecurityException
* if a security manager exists and it does not allow member
* access.
- * @see #getDeclaredMethod(String, Class...)
+ * @see #getDeclaredMethod(String, Class[])
*/
public Method getMethod(String name, Class<?>... parameterTypes) throws NoSuchMethodException,
SecurityException {