Example usage for Java java.io FilePermission fields, constructors, methods, implement or subclass
The text is from its open source code.
FilePermission(String path, String actions) Creates a new FilePermission object with the specified actions. | |
FilePermission(String path, int mask) Creates a new FilePermission object using an action mask. |
boolean | equals(Object obj) Checks two FilePermission objects for equality. |
String | getActions() Returns the "canonical string representation" of the actions. |
int | hashCode() Returns the hash code value for this object. |
boolean | implies(Permission p) Checks if this FilePermission object "implies" the specified permission. |
PermissionCollection | newPermissionCollection() Returns a new PermissionCollection object for storing FilePermission objects. |