All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.android.db.DbQuery Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.db;

import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import org.jetbrains.annotations.NotNull;

/**
 * User: serso
 * Date: 4/15/12
 * Time: 6:00 PM
 */
public interface DbQuery {

    @NotNull
    Cursor createCursor(@NotNull SQLiteDatabase db);

    @NotNull
    R retrieveData(@NotNull Cursor cursor);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy