Back to project page tetravex-android.
The source code is released under:
GNU General Public License
If you think the Android project tetravex-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Three.java//w w w . j a va2 s . c o m * * Created: 11/11/2014 09:28:13 */ package com.github.tetravex_android.domain.three; import android.database.Cursor; import android.content.ContentValues; public class Three extends ThreeBaseRecord { public Three(Cursor cursor) { setContent(cursor); } public Three(ContentValues values) { setContent(values); } public Three() { } }