FileDocCategorySizeDatePackage
ReflectionAccessImpl.javaAPI DocAndroid 1.5 API1659Wed May 06 22:41:04 BST 2009java.lang.reflect

ReflectionAccessImpl

public final class ReflectionAccessImpl extends Object implements org.apache.harmony.kernel.vm.ReflectionAccess
Implementation of bridge from {@code java.lang} to {@code java.lang.reflect}.

Fields Summary
static final ReflectionAccessImpl
THE_ONE
non-null; unique instance of this class
Constructors Summary
private ReflectionAccessImpl()
This class is not publicly instantiable. Use {@link #THE_ONE}.


                  
      
        // This space intentionally left blank.
    
Methods Summary
public java.lang.reflect.MethodaccessibleClone(java.lang.reflect.Method method)

        Method result = new Method(method);
        result.setAccessibleNoCheck(true);
        return result;
    
public java.lang.reflect.Methodclone(java.lang.reflect.Method method)

        return new Method(method);
    
public java.lang.reflect.Fieldclone(java.lang.reflect.Field field)

        return new Field(field);
    
public voidsetAccessibleNoCheck(java.lang.reflect.AccessibleObject ao, boolean accessible)

        ao.setAccessibleNoCheck(accessible);