Back to project page InMemoryDb.
The source code is released under:
Apache License
If you think the Android project InMemoryDb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.gawst.asyncdb.source; /* ww w . ja v a 2s. c om*/ import android.database.Cursor; import org.gawst.asyncdb.source.typed.TypedDatabaseSource; /** * Interface for classes that read/write data in SQL queries * * @param <INSERT_ID> Type of element returned by {@link #insert(android.content.ContentValues) insert()} * @param <DATABASE_ID> Type of the ID needed to use {@link org.gawst.asyncdb.AsyncDatabaseHandler} * @author Created by robUx4 on 06/01/2015. */ public interface DatabaseSource<INSERT_ID, DATABASE_ID> extends TypedDatabaseSource<INSERT_ID, DATABASE_ID, Cursor> { }