Back to project page ContentProviderProcessor.
The source code is released under:
Apache License
If you think the Android project ContentProviderProcessor 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 de.wackernagel.android.contractcontentprovider; /*from w w w . j ava 2 s. c o m*/ import android.database.sqlite.SQLiteDatabase; public interface Contract { public static final String COLUMN_ID = "_id"; void onCreateStatement( SQLiteDatabase db ); void onUpgradeStatement( SQLiteDatabase db, int oldVersion, int newVersion ); String getTable(); }