diff options
author | C. Sean Young <csyoung@google.com> | 2015-08-06 14:02:22 -0500 |
---|---|---|
committer | C. Sean Young <csyoung@google.com> | 2015-09-18 10:35:42 -0500 |
commit | 8de564a0f6f6a27f451c456d5e6f85bbbcd666cb (patch) | |
tree | 06066148ed7818d2768bb30e53b2e8ce45cc6404 /api/system-current.txt | |
parent | 9902b3bc8d11fd3ef33644315a87436b7a48c78b (diff) | |
download | frameworks_base-8de564a0f6f6a27f451c456d5e6f85bbbcd666cb.zip frameworks_base-8de564a0f6f6a27f451c456d5e6f85bbbcd666cb.tar.gz frameworks_base-8de564a0f6f6a27f451c456d5e6f85bbbcd666cb.tar.bz2 |
Properly expose methods that override a non-hidden method in a hidden superclass in the API files.
Updates the api files to reflect a doclava change.
Change-Id: I416773be3aa3a8536684549011fa63b34f0d5251
Diffstat (limited to 'api/system-current.txt')
-rw-r--r-- | api/system-current.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index f464292..c5ca20b 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -47751,7 +47751,10 @@ package java.lang.reflect { } public final class Constructor extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member { + method public boolean equals(java.lang.Object); method public A getAnnotation(java.lang.Class<A>); + method public java.lang.annotation.Annotation[] getAnnotations(); + method public java.lang.annotation.Annotation[] getDeclaredAnnotations(); method public java.lang.Class<T> getDeclaringClass(); method public java.lang.Class<?>[] getExceptionTypes(); method public java.lang.reflect.Type[] getGenericExceptionTypes(); @@ -47761,6 +47764,7 @@ package java.lang.reflect { method public java.lang.annotation.Annotation[][] getParameterAnnotations(); method public java.lang.Class<?>[] getParameterTypes(); method public java.lang.reflect.TypeVariable<java.lang.reflect.Constructor<T>>[] getTypeParameters(); + method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>); method public boolean isSynthetic(); method public boolean isVarArgs(); method public T newInstance(java.lang.Object...) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, java.lang.InstantiationException, java.lang.reflect.InvocationTargetException; @@ -47834,7 +47838,10 @@ package java.lang.reflect { } public final class Method extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member { + method public boolean equals(java.lang.Object); method public A getAnnotation(java.lang.Class<A>); + method public java.lang.annotation.Annotation[] getAnnotations(); + method public java.lang.annotation.Annotation[] getDeclaredAnnotations(); method public java.lang.Class<?> getDeclaringClass(); method public java.lang.Object getDefaultValue(); method public java.lang.Class<?>[] getExceptionTypes(); @@ -47848,6 +47855,7 @@ package java.lang.reflect { method public java.lang.Class<?> getReturnType(); method public java.lang.reflect.TypeVariable<java.lang.reflect.Method>[] getTypeParameters(); method public java.lang.Object invoke(java.lang.Object, java.lang.Object...) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, java.lang.reflect.InvocationTargetException; + method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>); method public boolean isBridge(); method public boolean isSynthetic(); method public boolean isVarArgs(); |