Package org.robolectric.shadows
Class ShadowAsyncQueryHandler
- java.lang.Object
-
- org.robolectric.shadows.ShadowAsyncQueryHandler
-
@Implements(android.content.AsyncQueryHandler.class) public class ShadowAsyncQueryHandler extends Object
Shadow ofAsyncQueryHandler
, which calls methods synchronously.
-
-
Constructor Summary
Constructors Constructor Description ShadowAsyncQueryHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
__constructor__(ContentResolver contentResolver)
protected void
cancelOperation(int token)
protected void
startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs)
protected void
startInsert(int token, Object cookie, Uri uri, ContentValues initialValues)
protected void
startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy)
protected void
startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs)
-
-
-
Method Detail
-
__constructor__
@Implementation protected void __constructor__(ContentResolver contentResolver)
-
startDelete
@Implementation protected void startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs)
-
startInsert
@Implementation protected void startInsert(int token, Object cookie, Uri uri, ContentValues initialValues)
-
startQuery
@Implementation protected void startQuery(int token, Object cookie, Uri uri, String[] projection, String selection, String[] selectionArgs, String orderBy)
-
startUpdate
@Implementation protected void startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs)
-
cancelOperation
@Implementation protected final void cancelOperation(int token)
-
-