Back to project page ElyTheme.
The source code is released under:
GNU General Public License
If you think the Android project ElyTheme 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.afollestad.silk; /*from www . jav a2s .c o m*/ import android.content.ContentValues; import android.database.Cursor; public interface SilkCursorItem<Type> extends SilkComparable { public ContentValues getContentValues(); public Type convert(Cursor cursor); public String getColumns(); }