Merge "TIF: specify that selection is not allowed in CONTENT_URI" into oc-dev
This commit is contained in:
@@ -1624,7 +1624,12 @@ public final class TvContract {
|
|||||||
/** Column definitions for the TV channels table. */
|
/** Column definitions for the TV channels table. */
|
||||||
public static final class Channels implements BaseTvColumns {
|
public static final class Channels implements BaseTvColumns {
|
||||||
|
|
||||||
/** The content:// style URI for this table. */
|
/**
|
||||||
|
* The content:// style URI for this table.
|
||||||
|
*
|
||||||
|
* <p>SQL selection is not supported for {@link ContentResolver#query},
|
||||||
|
* {@link ContentResolver#update} and {@link ContentResolver#delete} operations.
|
||||||
|
*/
|
||||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
||||||
+ PATH_CHANNEL);
|
+ PATH_CHANNEL);
|
||||||
|
|
||||||
@@ -2423,7 +2428,12 @@ public final class TvContract {
|
|||||||
*/
|
*/
|
||||||
public static final class Programs implements BaseTvColumns, ProgramColumns {
|
public static final class Programs implements BaseTvColumns, ProgramColumns {
|
||||||
|
|
||||||
/** The content:// style URI for this table. */
|
/**
|
||||||
|
* The content:// style URI for this table.
|
||||||
|
*
|
||||||
|
* <p>SQL selection is not supported for {@link ContentResolver#query},
|
||||||
|
* {@link ContentResolver#update} and {@link ContentResolver#delete} operations.
|
||||||
|
*/
|
||||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
||||||
+ PATH_PROGRAM);
|
+ PATH_PROGRAM);
|
||||||
|
|
||||||
@@ -2737,7 +2747,12 @@ public final class TvContract {
|
|||||||
*/
|
*/
|
||||||
public static final class RecordedPrograms implements BaseTvColumns, ProgramColumns {
|
public static final class RecordedPrograms implements BaseTvColumns, ProgramColumns {
|
||||||
|
|
||||||
/** The content:// style URI for this table. */
|
/**
|
||||||
|
* The content:// style URI for this table.
|
||||||
|
*
|
||||||
|
* <p>SQL selection is not supported for {@link ContentResolver#query},
|
||||||
|
* {@link ContentResolver#update} and {@link ContentResolver#delete} operations.
|
||||||
|
*/
|
||||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
||||||
+ PATH_RECORDED_PROGRAM);
|
+ PATH_RECORDED_PROGRAM);
|
||||||
|
|
||||||
@@ -2858,7 +2873,12 @@ public final class TvContract {
|
|||||||
public static final class PreviewPrograms implements BaseTvColumns, ProgramColumns,
|
public static final class PreviewPrograms implements BaseTvColumns, ProgramColumns,
|
||||||
PreviewProgramColumns {
|
PreviewProgramColumns {
|
||||||
|
|
||||||
/** The content:// style URI for this table. */
|
/**
|
||||||
|
* The content:// style URI for this table.
|
||||||
|
*
|
||||||
|
* <p>SQL selection is not supported for {@link ContentResolver#query},
|
||||||
|
* {@link ContentResolver#update} and {@link ContentResolver#delete} operations.
|
||||||
|
*/
|
||||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
||||||
+ PATH_PREVIEW_PROGRAM);
|
+ PATH_PREVIEW_PROGRAM);
|
||||||
|
|
||||||
@@ -2905,7 +2925,12 @@ public final class TvContract {
|
|||||||
public static final class WatchNextPrograms implements BaseTvColumns, ProgramColumns,
|
public static final class WatchNextPrograms implements BaseTvColumns, ProgramColumns,
|
||||||
PreviewProgramColumns {
|
PreviewProgramColumns {
|
||||||
|
|
||||||
/** The content:// style URI for this table. */
|
/**
|
||||||
|
* The content:// style URI for this table.
|
||||||
|
*
|
||||||
|
* <p>SQL selection is not supported for {@link ContentResolver#query},
|
||||||
|
* {@link ContentResolver#update} and {@link ContentResolver#delete} operations.
|
||||||
|
*/
|
||||||
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/"
|
||||||
+ PATH_WATCH_NEXT_PROGRAM);
|
+ PATH_WATCH_NEXT_PROGRAM);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user