2024-03-07 15:47:10 +01:00
|
|
|
package android.content;
|
|
|
|
|
|
2024-08-05 17:13:10 +02:00
|
|
|
import android.database.Cursor;
|
|
|
|
|
import android.net.Uri;
|
2024-08-29 13:51:08 +02:00
|
|
|
import android.os.ParcelFileDescriptor;
|
2024-08-05 17:13:10 +02:00
|
|
|
|
2024-03-07 15:47:10 +01:00
|
|
|
public class SearchRecentSuggestionsProvider extends ContentProvider {
|
|
|
|
|
public void setupSuggestions(String s, int i) {}
|
2024-08-05 17:13:10 +02:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) {
|
|
|
|
|
throw new UnsupportedOperationException("Unimplemented method 'query'");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Uri insert(Uri uri, ContentValues values) {
|
|
|
|
|
throw new UnsupportedOperationException("Unimplemented method 'insert'");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int delete(Uri uri, String selection, String[] selectionArgs) {
|
|
|
|
|
throw new UnsupportedOperationException("Unimplemented method 'delete'");
|
|
|
|
|
}
|
2024-08-29 13:51:08 +02:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getType(Uri uri) {
|
|
|
|
|
throw new UnsupportedOperationException("Unimplemented method 'getType'");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public ParcelFileDescriptor openFile(Uri uri, String mode) {
|
|
|
|
|
throw new UnsupportedOperationException("Unimplemented method 'openFile'");
|
|
|
|
|
}
|
2024-03-07 15:47:10 +01:00
|
|
|
}
|