Back to project page android-webview-example.
The source code is released under:
Apache License
If you think the Android project android-webview-example 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.significantfiles.android.sqlite.commands; /* w ww . j av a 2 s. co m*/ import android.content.ContentValues; import com.significantfiles.mrcounter.db.ContentProviderCmd; public abstract class InsertCmd implements ContentProviderCmd { private ContentValues values; // public InsertCmd( final SQLiteOpenHelper dbManager ) // private SQLiteDatabase db; public void set(final ContentValues values) { this.values = values; } }