Merge "api: Un-hide new reflection 1.8 APIs"
am: 700ed048f9
* commit '700ed048f9c860fb18439ef79a8b7b107e7fe054':
api: Un-hide new reflection 1.8 APIs
This commit is contained in:
@@ -48198,13 +48198,16 @@ package java.lang {
|
|||||||
method public static java.lang.Class<?> forName(java.lang.String, boolean, java.lang.ClassLoader) throws java.lang.ClassNotFoundException;
|
method public static java.lang.Class<?> forName(java.lang.String, boolean, java.lang.ClassLoader) throws java.lang.ClassNotFoundException;
|
||||||
method public A getAnnotation(java.lang.Class<A>);
|
method public A getAnnotation(java.lang.Class<A>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.String getCanonicalName();
|
method public java.lang.String getCanonicalName();
|
||||||
method public java.lang.ClassLoader getClassLoader();
|
method public java.lang.ClassLoader getClassLoader();
|
||||||
method public java.lang.Class<?>[] getClasses();
|
method public java.lang.Class<?>[] getClasses();
|
||||||
method public java.lang.Class<?> getComponentType();
|
method public java.lang.Class<?> getComponentType();
|
||||||
method public java.lang.reflect.Constructor<T> getConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<T> getConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
||||||
method public java.lang.reflect.Constructor<?>[] getConstructors() throws java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<?>[] getConstructors() throws java.lang.SecurityException;
|
||||||
|
method public T getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.Class<?>[] getDeclaredClasses();
|
method public java.lang.Class<?>[] getDeclaredClasses();
|
||||||
method public java.lang.reflect.Constructor<T> getDeclaredConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<T> getDeclaredConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
||||||
method public java.lang.reflect.Constructor<?>[] getDeclaredConstructors() throws java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<?>[] getDeclaredConstructors() throws java.lang.SecurityException;
|
||||||
@@ -48735,7 +48738,10 @@ package java.lang {
|
|||||||
public class Package implements java.lang.reflect.AnnotatedElement {
|
public class Package implements java.lang.reflect.AnnotatedElement {
|
||||||
method public A getAnnotation(java.lang.Class<A>);
|
method public A getAnnotation(java.lang.Class<A>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.String getImplementationTitle();
|
method public java.lang.String getImplementationTitle();
|
||||||
method public java.lang.String getImplementationVendor();
|
method public java.lang.String getImplementationVendor();
|
||||||
method public java.lang.String getImplementationVersion();
|
method public java.lang.String getImplementationVersion();
|
||||||
@@ -49429,7 +49435,10 @@ package java.lang.reflect {
|
|||||||
ctor protected AccessibleObject();
|
ctor protected AccessibleObject();
|
||||||
method public T getAnnotation(java.lang.Class<T>);
|
method public T getAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public boolean isAccessible();
|
method public boolean isAccessible();
|
||||||
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||||
method public static void setAccessible(java.lang.reflect.AccessibleObject[], boolean) throws java.lang.SecurityException;
|
method public static void setAccessible(java.lang.reflect.AccessibleObject[], boolean) throws java.lang.SecurityException;
|
||||||
@@ -49439,7 +49448,10 @@ package java.lang.reflect {
|
|||||||
public abstract interface AnnotatedElement {
|
public abstract interface AnnotatedElement {
|
||||||
method public abstract T getAnnotation(java.lang.Class<T>);
|
method public abstract T getAnnotation(java.lang.Class<T>);
|
||||||
method public abstract java.lang.annotation.Annotation[] getAnnotations();
|
method public abstract java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public abstract T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public abstract java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public abstract java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public abstract java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public abstract T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public abstract boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
method public abstract boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -50816,13 +50816,16 @@ package java.lang {
|
|||||||
method public static java.lang.Class<?> forName(java.lang.String, boolean, java.lang.ClassLoader) throws java.lang.ClassNotFoundException;
|
method public static java.lang.Class<?> forName(java.lang.String, boolean, java.lang.ClassLoader) throws java.lang.ClassNotFoundException;
|
||||||
method public A getAnnotation(java.lang.Class<A>);
|
method public A getAnnotation(java.lang.Class<A>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.String getCanonicalName();
|
method public java.lang.String getCanonicalName();
|
||||||
method public java.lang.ClassLoader getClassLoader();
|
method public java.lang.ClassLoader getClassLoader();
|
||||||
method public java.lang.Class<?>[] getClasses();
|
method public java.lang.Class<?>[] getClasses();
|
||||||
method public java.lang.Class<?> getComponentType();
|
method public java.lang.Class<?> getComponentType();
|
||||||
method public java.lang.reflect.Constructor<T> getConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<T> getConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
||||||
method public java.lang.reflect.Constructor<?>[] getConstructors() throws java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<?>[] getConstructors() throws java.lang.SecurityException;
|
||||||
|
method public T getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.Class<?>[] getDeclaredClasses();
|
method public java.lang.Class<?>[] getDeclaredClasses();
|
||||||
method public java.lang.reflect.Constructor<T> getDeclaredConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<T> getDeclaredConstructor(java.lang.Class<?>...) throws java.lang.NoSuchMethodException, java.lang.SecurityException;
|
||||||
method public java.lang.reflect.Constructor<?>[] getDeclaredConstructors() throws java.lang.SecurityException;
|
method public java.lang.reflect.Constructor<?>[] getDeclaredConstructors() throws java.lang.SecurityException;
|
||||||
@@ -51353,7 +51356,10 @@ package java.lang {
|
|||||||
public class Package implements java.lang.reflect.AnnotatedElement {
|
public class Package implements java.lang.reflect.AnnotatedElement {
|
||||||
method public A getAnnotation(java.lang.Class<A>);
|
method public A getAnnotation(java.lang.Class<A>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public java.lang.String getImplementationTitle();
|
method public java.lang.String getImplementationTitle();
|
||||||
method public java.lang.String getImplementationVendor();
|
method public java.lang.String getImplementationVendor();
|
||||||
method public java.lang.String getImplementationVersion();
|
method public java.lang.String getImplementationVersion();
|
||||||
@@ -52047,7 +52053,10 @@ package java.lang.reflect {
|
|||||||
ctor protected AccessibleObject();
|
ctor protected AccessibleObject();
|
||||||
method public T getAnnotation(java.lang.Class<T>);
|
method public T getAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getAnnotations();
|
method public java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public boolean isAccessible();
|
method public boolean isAccessible();
|
||||||
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||||
method public static void setAccessible(java.lang.reflect.AccessibleObject[], boolean) throws java.lang.SecurityException;
|
method public static void setAccessible(java.lang.reflect.AccessibleObject[], boolean) throws java.lang.SecurityException;
|
||||||
@@ -52057,7 +52066,10 @@ package java.lang.reflect {
|
|||||||
public abstract interface AnnotatedElement {
|
public abstract interface AnnotatedElement {
|
||||||
method public abstract T getAnnotation(java.lang.Class<T>);
|
method public abstract T getAnnotation(java.lang.Class<T>);
|
||||||
method public abstract java.lang.annotation.Annotation[] getAnnotations();
|
method public abstract java.lang.annotation.Annotation[] getAnnotations();
|
||||||
|
method public abstract T[] getAnnotationsByType(java.lang.Class<T>);
|
||||||
|
method public abstract java.lang.annotation.Annotation getDeclaredAnnotation(java.lang.Class<T>);
|
||||||
method public abstract java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
method public abstract java.lang.annotation.Annotation[] getDeclaredAnnotations();
|
||||||
|
method public abstract T[] getDeclaredAnnotationsByType(java.lang.Class<T>);
|
||||||
method public abstract boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
method public abstract boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user