Back to project page EsTrains.
The source code is released under:
GNU General Public License
If you think the Android project EsTrains 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 es.trains.provider; //from www . ja v a 2s . c o m import android.net.Uri; import android.provider.BaseColumns; /** * * @author Diego Pino <dpino@igalia.com> * */ public class Timetable implements BaseColumns { public static final String AUTHORITY = "es.trains.provider"; public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/timetables"); public static final String DEFAULT_ORDER = "date DESC"; /** * <p> * </p> */ public static final String ORIGIN = "origin"; /** * <p> * </p> */ public static final String DESTINATION = "destination"; /** * <p> * </p> */ public static final String DATE = "date"; }