FileDocCategorySizeDatePackage
ReflectionAccess.javaAPI DocAndroid 1.5 API2064Wed May 06 22:41:04 BST 2009org.apache.harmony.kernel.vm

ReflectionAccess

public interface ReflectionAccess
Bridge from java.lang to java.lang.reflect. The package java.lang gets seeded with an instance of this interface, to allow it to call into what would otherwise be package-scope functionality in java.lang.reflect.

Fields Summary
Constructors Summary
Methods Summary
public java.lang.reflect.MethodaccessibleClone(java.lang.reflect.Method method)
Gets a clone of the given method, where the clone has its "accessible" flag set to true

param
method non-null; the method to clone
return
non-null; the accessible clone

public java.lang.reflect.Methodclone(java.lang.reflect.Method method)
Gets a clone of the given method.

param
method non-null; the method to clone
return
non-null; the clone

public java.lang.reflect.Fieldclone(java.lang.reflect.Field field)
Gets a clone of the given field.

param
field non-null; the field to clone
return
non-null; the clone

public voidsetAccessibleNoCheck(java.lang.reflect.AccessibleObject ao, boolean flag)
Sets the accessible flag on a given {@link AccessibleObject} without doing any checks.

param
ao non-null; the instance in question
param
flag the new value for the accessible flag