mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
26 lines
829 B
Java
Generated
26 lines
829 B
Java
Generated
// Generated automatically from android.os.Looper for testing purposes
|
|
|
|
package android.os;
|
|
|
|
import android.os.MessageQueue;
|
|
import android.util.Printer;
|
|
|
|
public class Looper
|
|
{
|
|
protected Looper() {}
|
|
public MessageQueue getQueue(){ return null; }
|
|
public String toString(){ return null; }
|
|
public Thread getThread(){ return null; }
|
|
public boolean isCurrentThread(){ return false; }
|
|
public static Looper getMainLooper(){ return null; }
|
|
public static Looper myLooper(){ return null; }
|
|
public static MessageQueue myQueue(){ return null; }
|
|
public static void loop(){}
|
|
public static void prepare(){}
|
|
public static void prepareMainLooper(){}
|
|
public void dump(Printer p0, String p1){}
|
|
public void quit(){}
|
|
public void quitSafely(){}
|
|
public void setMessageLogging(Printer p0){}
|
|
}
|