Lines Matching refs:name
31 * actions. The only name currently defined is {@code suppressAccessChecks},
41 * <table border=1 cellpadding=5 summary="Table shows permission target name, what the permission allows, and associated risks">
75 * Constructs a ReflectPermission with the specified name.
77 * @param name the name of the ReflectPermission
79 * @throws NullPointerException if {@code name} is {@code null}.
80 * @throws IllegalArgumentException if {@code name} is empty.
82 public ReflectPermission(String name) {
83 super(name);
87 * Constructs a ReflectPermission with the specified name and actions.
90 * @param name the name of the ReflectPermission
94 * @throws NullPointerException if {@code name} is {@code null}.
95 * @throws IllegalArgumentException if {@code name} is empty.
97 public ReflectPermission(String name, String actions) {
98 super(name, actions);