Back to project page anluwage.
The source code is released under:
GNU General Public License
If you think the Android project anluwage 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 com.sudocode.content.provider.api; /*www .j ava 2 s.c o m*/ import android.database.sqlite.SQLiteDatabase; /** * Created by RM on 1/26/14. */ public interface ProviderModel { String getAuthority(); String getDatabaseName(); int getVersion(); SQLiteDatabase.CursorFactory getCursorFactory(); Class<?>[] getTableModelClasses(); }