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 ww w.j a v a 2 s. c o m*/ import android.net.Uri; import android.provider.BaseColumns; /** * * @author Diego Pino <dpino@igalia.com> * */ public class Train implements BaseColumns { public static final String AUTHORITY = "es.trains.provider"; public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/trains"); public static final String DEFAULT_ORDER = "departure DESC"; /** * <p> * </p> */ public static final String CODE = "code"; /** * <p> * </p> */ public static final String ARRIVE = "arrive"; /** * <p> * </p> */ public static final String DEPARTURE = "departure"; /** * <p> * </p> */ public static final String LENGTH = "length"; /** * <p> * </p> */ public static final String TIMETABLE_ID = "timetable_id"; }