Back to project page androidata.
The source code is released under:
Apache License
If you think the Android project androidata 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.stanidesis.androidata.model; /* ww w . j a v a 2 s . c o m*/ import android.content.ContentValues; /** * An Interface to help add models to the database. * Consider including * Created by Stanley Idesis on 8/19/14. */ public interface IModelBuilder { public ContentValues getValues(); }