android.os.RemoteCallbackList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.os;
public class RemoteCallbackList
{
public RemoteCallbackList() { throw new RuntimeException("Stub!"); }
public boolean register(E callback) { throw new RuntimeException("Stub!"); }
public boolean register(E callback, java.lang.Object cookie) { throw new RuntimeException("Stub!"); }
public boolean unregister(E callback) { throw new RuntimeException("Stub!"); }
public void kill() { throw new RuntimeException("Stub!"); }
public void onCallbackDied(E callback) { throw new RuntimeException("Stub!"); }
public void onCallbackDied(E callback, java.lang.Object cookie) { throw new RuntimeException("Stub!"); }
public int beginBroadcast() { throw new RuntimeException("Stub!"); }
public E getBroadcastItem(int index) { throw new RuntimeException("Stub!"); }
public java.lang.Object getBroadcastCookie(int index) { throw new RuntimeException("Stub!"); }
public void finishBroadcast() { throw new RuntimeException("Stub!"); }
}