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

ReflectPermission

public final class ReflectPermission extends BasicPermission
A {@code ReflectPermission} object represents a permission to access operations in the reflection layer.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ReflectPermission(String permissionName)
Constructs a new {@code ReflectPermission} instance with the specified name.

param
permissionName the name of the new permission
throws
IllegalArgumentException if {@code name} is empty
throws
NullPointerException if {@code name} is {@code null}
since
Android 1.0


                                                                                              
       
        super(permissionName);
    
public ReflectPermission(String name, String actions)
Constructs a new {@code ReflectPermission} instance with the specified name and action list. The action list will be ignored.

param
name the name of the new permission
param
actions this parameter will be ignored
throws
IllegalArgumentException if {@code name} is empty
throws
NullPointerException if {@code name} is {@code null}
since
Android 1.0

        super(name, actions);
    
Methods Summary