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.sample.provider; //from www.j a va 2 s . co m import de.wackernagel.android.contractcontentprovider.ContractContentProvider; public class SampleProvider extends ContractContentProvider { public static final String AUTHORITY = "de.wackernagel.android.contractcontentprovider.sample.provider"; private static final String DATABASE_NAME = "contracts.db"; private static final int VERSION = 1; public SampleProvider() { super( AUTHORITY, DATABASE_NAME, VERSION, new CustomerContract() ); } }