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 .j a va2 s. c o m*/ import edu.mit.mobile.android.content.column.DBColumn; import edu.mit.mobile.android.content.column.FloatColumn; import edu.mit.mobile.android.content.column.TextColumn; /** * implement this in order to inherit columns needed for becoming locatable. * * @author steve * */ public interface Locatable { @DBColumn(type = FloatColumn.class) public static final String COL_LATITUDE = "lat"; @DBColumn(type = FloatColumn.class) public static final String COL_LONGITUDE = "lon"; @DBColumn(type = TextColumn.class) public static final String COL_GEOCELL = "geocell"; }