All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.FileObserver Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.os;
public abstract class FileObserver
{
public  FileObserver(java.lang.String path) { throw new RuntimeException("Stub!"); }
public  FileObserver(java.lang.String path, int mask) { throw new RuntimeException("Stub!"); }
protected  void finalize() { throw new RuntimeException("Stub!"); }
public  void startWatching() { throw new RuntimeException("Stub!"); }
public  void stopWatching() { throw new RuntimeException("Stub!"); }
public abstract  void onEvent(int event, java.lang.String path);
public static final int ACCESS = 1;
public static final int MODIFY = 2;
public static final int ATTRIB = 4;
public static final int CLOSE_WRITE = 8;
public static final int CLOSE_NOWRITE = 16;
public static final int OPEN = 32;
public static final int MOVED_FROM = 64;
public static final int MOVED_TO = 128;
public static final int CREATE = 256;
public static final int DELETE = 512;
public static final int DELETE_SELF = 1024;
public static final int MOVE_SELF = 2048;
public static final int ALL_EVENTS = 4095;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy