Back to project page Android-Database-Complex-Joins.
The source code is released under:
Apache License
If you think the Android project Android-Database-Complex-Joins 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 be.florien.databasecomplexjoins.architecture; //from ww w . j a va2 s.c o m import android.content.ContentValues; public class DBWrite { private ContentValues mValues; private String mTableName; public DBWrite(String tableName, ContentValues values){ mValues = values; this.mTableName = tableName; } public ContentValues getValue() { return mValues; } public String getTableName() { return mTableName; } }