All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.AWTPermission
java.lang.Object
|
+----java.security.Permission
|
+----java.security.BasicPermission
|
+----java.awt.AWTPermission
- public final class AWTPermission
- extends BasicPermission
This class is for AWT permissions.
An AWTPermission contains a name but
no actions list; you either have the named permission
or you don't.
The name is the name of the AWT permission ("topLevelWindow",
"systemClipboard", etc). The naming
convention follows the hierarchical property naming convention.
Also, an asterisk could be used to represent all AWT permissions.
- See Also:
- BasicPermission, Permission, Permissions, PermissionCollection, SecurityManager
AWTPermission(String)
- Creates a new AWTPermission with the specified name.
AWTPermission(String, String)
- Creates a new AWTPermission object with the specified name.
AWTPermission
public AWTPermission(String name)
- Creates a new AWTPermission with the specified name.
The name is the symbolic name of the AWTPermission, such as
"topLevelWindow", "systemClipboard", etc. An asterisk
may be used to indicate all AWT permissions.
- Parameters:
- name - the name of the AWTPermission.
AWTPermission
public AWTPermission(String name,
String actions)
- Creates a new AWTPermission object with the specified name.
The name is the symbolic name of the AWTPermission, and the
actions String is currently unused and should be null. This
constructor exists for use by the
Policy
object
to instantiate new Permission objects.
- Parameters:
- name - the name of the AWTPermission.
- actions - should be null.
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature