Back to project page Locast-Core-Android.
The source code is released under:
GNU General Public License
If you think the Android project Locast-Core-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.
package edu.mit.mobile.android.locast.data.interfaces; //w w w . ja v a 2 s.c o m import edu.mit.mobile.android.content.column.DBColumn; import edu.mit.mobile.android.content.column.TextColumn; public interface Titled { @DBColumn(type = TextColumn.class, notnull = true) public static final String COL_TITLE = "title"; @DBColumn(type = TextColumn.class) public static final String COL_DESCRIPTION = "description"; }