Back to project page favouritetv.
The source code is released under:
Copyright (c) 2011 Andr? Prata<andreprata@ua.pt> Eriksson Monteiro<eriksson.monteiro@ua.pt> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associat...
If you think the Android project favouritetv listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * /*from w w w. jav a 2s. co m*/ */ package pt.ua.code.favouritetv.content; import android.net.Uri; import android.provider.BaseColumns; /** * @author Andr Prata * */ public abstract class Home implements BaseColumns { public static final String NAME = "home"; public static final Uri CONTENT_URI = Uri.parse("content://" + FavouriteTvProvider.AUTHORITY + "/" + NAME); public static final String HOME_ID = "_id"; public static final String LATITUDE = "latitude"; public static final String LONGITUDE = "longitude"; public static final String CONTENT_TYPE = "vnd.android.cursor.item/vnd.favouritetv." + NAME; }