Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
rockchip_libcore
Commits
90aec9a1
Commit
90aec9a1
authored
14 years ago
by
Brad Fitzpatrick
Browse files
Options
Download
Email Patches
Plain Diff
Fix @see links
Change-Id: I432c3e402ff6a97651959891a8581be229c4b958
parent
2915378e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
luni/src/main/java/java/lang/Class.java
luni/src/main/java/java/lang/Class.java
+4
-4
No files found.
luni/src/main/java/java/lang/Class.java
View file @
90aec9a1
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment