Back to project page TwelveRules.
The source code is released under:
Apache License
If you think the Android project TwelveRules 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.manuelpeinado.twelverules; /* ww w .j a va2 s .c o m*/ import android.content.ContentValues; import com.manuelpeinado.twelverules.DatabaseColumn; public class ContentValuesCreator { private ContentValues dest; public ContentValuesCreator() { this(null); } public ContentValuesCreator(ContentValues dest) { this.dest = dest == null ? new ContentValues() : dest; } public void put(DatabaseColumn column, String value) { column.put(dest, value); } }