home *** CD-ROM | disk | FTP | other *** search
- package sun.management;
-
- import java.io.File;
- import java.io.IOException;
-
- public abstract class FileSystem {
- private static final Object lock = new Object();
- // $FF: renamed from: fs sun.management.FileSystem
- private static FileSystem field_0;
-
- protected FileSystem() {
- }
-
- public static FileSystem open() {
- synchronized(lock) {
- if (field_0 == null) {
- field_0 = new FileSystemImpl();
- }
-
- return field_0;
- }
- }
-
- public abstract boolean supportsFileSecurity(File var1) throws IOException;
-
- public abstract boolean isAccessUserOnly(File var1) throws IOException;
- }
-