Lines Matching refs:name
32 * An <code>AWTPermission</code> contains a target name but
37 * The target name is the name of the AWT permission (see below). The naming
205 * Creates a new <code>AWTPermission</code> with the specified name.
206 * The name is the symbolic name of the <code>AWTPermission</code>,
210 * @param name the name of the AWTPermission
212 * @throws NullPointerException if <code>name</code> is <code>null</code>.
213 * @throws IllegalArgumentException if <code>name</code> is empty.
216 public AWTPermission(String name)
218 super(name);
222 * Creates a new <code>AWTPermission</code> object with the specified name.
223 * The name is the symbolic name of the <code>AWTPermission</code>, and the
226 * @param name the name of the <code>AWTPermission</code>
229 * @throws NullPointerException if <code>name</code> is <code>null</code>.
230 * @throws IllegalArgumentException if <code>name</code> is empty.
233 public AWTPermission(String name, String actions)
235 super(name, actions);