![JAR search and dependency download from the Maven repository](/logo.png)
android.content.AsyncQueryHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
package android.content;
public abstract class AsyncQueryHandler
extends android.os.Handler
{
protected static final class WorkerArgs
{
protected WorkerArgs() { throw new RuntimeException("Stub!"); }
public android.net.Uri uri;
public android.os.Handler handler;
public java.lang.String[] projection = null;
public java.lang.String selection;
public java.lang.String[] selectionArgs = null;
public java.lang.String orderBy;
public java.lang.Object result;
public java.lang.Object cookie;
public android.content.ContentValues values;
}
protected class WorkerHandler
extends android.os.Handler
{
public WorkerHandler(android.os.Looper looper) { throw new RuntimeException("Stub!"); }
public void handleMessage(android.os.Message msg) { throw new RuntimeException("Stub!"); }
}
public AsyncQueryHandler(android.content.ContentResolver cr) { throw new RuntimeException("Stub!"); }
protected android.os.Handler createHandler(android.os.Looper looper) { throw new RuntimeException("Stub!"); }
public void startQuery(int token, java.lang.Object cookie, android.net.Uri uri, java.lang.String[] projection, java.lang.String selection, java.lang.String[] selectionArgs, java.lang.String orderBy) { throw new RuntimeException("Stub!"); }
public final void cancelOperation(int token) { throw new RuntimeException("Stub!"); }
public final void startInsert(int token, java.lang.Object cookie, android.net.Uri uri, android.content.ContentValues initialValues) { throw new RuntimeException("Stub!"); }
public final void startUpdate(int token, java.lang.Object cookie, android.net.Uri uri, android.content.ContentValues values, java.lang.String selection, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public final void startDelete(int token, java.lang.Object cookie, android.net.Uri uri, java.lang.String selection, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
protected void onQueryComplete(int token, java.lang.Object cookie, android.database.Cursor cursor) { throw new RuntimeException("Stub!"); }
protected void onInsertComplete(int token, java.lang.Object cookie, android.net.Uri uri) { throw new RuntimeException("Stub!"); }
protected void onUpdateComplete(int token, java.lang.Object cookie, int result) { throw new RuntimeException("Stub!"); }
protected void onDeleteComplete(int token, java.lang.Object cookie, int result) { throw new RuntimeException("Stub!"); }
public void handleMessage(android.os.Message msg) { throw new RuntimeException("Stub!"); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy