Searched defs:FilePermission (Results 1 - 1 of 1) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/io/
H A DFilePermission.java28 * A permission for accessing a file or directory. The FilePermission is made up
32 * constructing a FilePermission. The following descriptions will assume the
49 public final class FilePermission extends Permission implements Serializable { class in inherits:Permission,Serializable
75 * Constructs a new FilePermission with the path and actions specified.
89 public FilePermission(String path, String actions) { method in class:FilePermission
204 * if {@code obj} is a FilePermission, they have the same path, and they
214 if (obj instanceof FilePermission) {
215 FilePermission fp = (FilePermission) obj;
234 * {@code FilePermission}, i
[all...]

Completed in 175 milliseconds