Merge "Track java.lang.reflect.Executable API changes" am: 43ec5716aa am: eefc000601
am: d8d495f1eb
Change-Id: I67e9aecd97ff9501af2839a80b3430db9678882e
This commit is contained in:
@@ -50674,6 +50674,7 @@ package java.lang {
|
||||
method public java.lang.Object[] getSigners();
|
||||
method public java.lang.String getSimpleName();
|
||||
method public java.lang.Class<? super T> getSuperclass();
|
||||
method public java.lang.String getTypeName();
|
||||
method public synchronized java.lang.reflect.TypeVariable<java.lang.Class<T>>[] getTypeParameters();
|
||||
method public boolean isAnnotation();
|
||||
method public boolean isAnonymousClass();
|
||||
@@ -52055,24 +52056,34 @@ package java.lang.reflect {
|
||||
method public static void setShort(java.lang.Object, int, short) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException;
|
||||
}
|
||||
|
||||
public final class Constructor extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Constructor extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<T> getDeclaringClass();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
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;
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public abstract class Executable extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public abstract java.lang.Class<?> getDeclaringClass();
|
||||
method public abstract java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public abstract int getModifiers();
|
||||
method public abstract java.lang.String getName();
|
||||
method public abstract java.lang.annotation.Annotation[][] getParameterAnnotations();
|
||||
method public int getParameterCount();
|
||||
method public abstract java.lang.Class<?>[] getParameterTypes();
|
||||
method public abstract java.lang.reflect.TypeVariable<?>[] getTypeParameters();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public abstract java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public final class Field extends java.lang.reflect.AccessibleObject implements java.lang.reflect.Member {
|
||||
method public java.lang.Object get(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
@@ -52089,7 +52100,6 @@ package java.lang.reflect {
|
||||
method public java.lang.String getName();
|
||||
method public short getShort(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public java.lang.Class<?> getType();
|
||||
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||
method public boolean isEnumConstant();
|
||||
method public boolean isSynthetic();
|
||||
method public void set(java.lang.Object, java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
@@ -52140,13 +52150,10 @@ package java.lang.reflect {
|
||||
field public static final int PUBLIC = 0; // 0x0
|
||||
}
|
||||
|
||||
public final class Method extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Method extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<?> getDeclaringClass();
|
||||
method public java.lang.Object getDefaultValue();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public java.lang.reflect.Type getGenericReturnType();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
@@ -52157,8 +52164,6 @@ package java.lang.reflect {
|
||||
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 isBridge();
|
||||
method public boolean isDefault();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
|
||||
@@ -54208,6 +54208,7 @@ package java.lang {
|
||||
method public java.lang.Object[] getSigners();
|
||||
method public java.lang.String getSimpleName();
|
||||
method public java.lang.Class<? super T> getSuperclass();
|
||||
method public java.lang.String getTypeName();
|
||||
method public synchronized java.lang.reflect.TypeVariable<java.lang.Class<T>>[] getTypeParameters();
|
||||
method public boolean isAnnotation();
|
||||
method public boolean isAnonymousClass();
|
||||
@@ -55589,24 +55590,34 @@ package java.lang.reflect {
|
||||
method public static void setShort(java.lang.Object, int, short) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException;
|
||||
}
|
||||
|
||||
public final class Constructor extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Constructor extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<T> getDeclaringClass();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
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;
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public abstract class Executable extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public abstract java.lang.Class<?> getDeclaringClass();
|
||||
method public abstract java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public abstract int getModifiers();
|
||||
method public abstract java.lang.String getName();
|
||||
method public abstract java.lang.annotation.Annotation[][] getParameterAnnotations();
|
||||
method public int getParameterCount();
|
||||
method public abstract java.lang.Class<?>[] getParameterTypes();
|
||||
method public abstract java.lang.reflect.TypeVariable<?>[] getTypeParameters();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public abstract java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public final class Field extends java.lang.reflect.AccessibleObject implements java.lang.reflect.Member {
|
||||
method public java.lang.Object get(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
@@ -55623,7 +55634,6 @@ package java.lang.reflect {
|
||||
method public java.lang.String getName();
|
||||
method public short getShort(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public java.lang.Class<?> getType();
|
||||
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||
method public boolean isEnumConstant();
|
||||
method public boolean isSynthetic();
|
||||
method public void set(java.lang.Object, java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
@@ -55674,13 +55684,10 @@ package java.lang.reflect {
|
||||
field public static final int PUBLIC = 0; // 0x0
|
||||
}
|
||||
|
||||
public final class Method extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Method extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<?> getDeclaringClass();
|
||||
method public java.lang.Object getDefaultValue();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public java.lang.reflect.Type getGenericReturnType();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
@@ -55691,8 +55698,6 @@ package java.lang.reflect {
|
||||
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 isBridge();
|
||||
method public boolean isDefault();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
|
||||
@@ -50758,6 +50758,7 @@ package java.lang {
|
||||
method public java.lang.Object[] getSigners();
|
||||
method public java.lang.String getSimpleName();
|
||||
method public java.lang.Class<? super T> getSuperclass();
|
||||
method public java.lang.String getTypeName();
|
||||
method public synchronized java.lang.reflect.TypeVariable<java.lang.Class<T>>[] getTypeParameters();
|
||||
method public boolean isAnnotation();
|
||||
method public boolean isAnonymousClass();
|
||||
@@ -52139,24 +52140,34 @@ package java.lang.reflect {
|
||||
method public static void setShort(java.lang.Object, int, short) throws java.lang.ArrayIndexOutOfBoundsException, java.lang.IllegalArgumentException;
|
||||
}
|
||||
|
||||
public final class Constructor extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Constructor extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<T> getDeclaringClass();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
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;
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public abstract class Executable extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public abstract java.lang.Class<?> getDeclaringClass();
|
||||
method public abstract java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public abstract int getModifiers();
|
||||
method public abstract java.lang.String getName();
|
||||
method public abstract java.lang.annotation.Annotation[][] getParameterAnnotations();
|
||||
method public int getParameterCount();
|
||||
method public abstract java.lang.Class<?>[] getParameterTypes();
|
||||
method public abstract java.lang.reflect.TypeVariable<?>[] getTypeParameters();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public abstract java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
public final class Field extends java.lang.reflect.AccessibleObject implements java.lang.reflect.Member {
|
||||
method public java.lang.Object get(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
@@ -52173,7 +52184,6 @@ package java.lang.reflect {
|
||||
method public java.lang.String getName();
|
||||
method public short getShort(java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
method public java.lang.Class<?> getType();
|
||||
method public boolean isAnnotationPresent(java.lang.Class<? extends java.lang.annotation.Annotation>);
|
||||
method public boolean isEnumConstant();
|
||||
method public boolean isSynthetic();
|
||||
method public void set(java.lang.Object, java.lang.Object) throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException;
|
||||
@@ -52224,13 +52234,10 @@ package java.lang.reflect {
|
||||
field public static final int PUBLIC = 0; // 0x0
|
||||
}
|
||||
|
||||
public final class Method extends java.lang.reflect.AccessibleObject implements java.lang.reflect.GenericDeclaration java.lang.reflect.Member {
|
||||
method public A getAnnotation(java.lang.Class<A>);
|
||||
public final class Method extends java.lang.reflect.Executable {
|
||||
method public java.lang.Class<?> getDeclaringClass();
|
||||
method public java.lang.Object getDefaultValue();
|
||||
method public java.lang.Class<?>[] getExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericExceptionTypes();
|
||||
method public java.lang.reflect.Type[] getGenericParameterTypes();
|
||||
method public java.lang.reflect.Type getGenericReturnType();
|
||||
method public int getModifiers();
|
||||
method public java.lang.String getName();
|
||||
@@ -52241,8 +52248,6 @@ package java.lang.reflect {
|
||||
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 isBridge();
|
||||
method public boolean isDefault();
|
||||
method public boolean isSynthetic();
|
||||
method public boolean isVarArgs();
|
||||
method public java.lang.String toGenericString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user