diff options
author | Dongwon Kang <dwkang@google.com> | 2014-11-03 04:23:57 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-03 04:23:57 +0000 |
commit | 6dd6aac9ef75ed336711a5d69e90e3fccf98ff9a (patch) | |
tree | 73fbafd43f1aa66bda594aefbd54cfb00723a82e | |
parent | 021e5db2b626626566fec7921ec9cbeae865106c (diff) | |
parent | 099003bd20108ee5f2c5cdd00b78fc1779385714 (diff) | |
download | frameworks_base-6dd6aac9ef75ed336711a5d69e90e3fccf98ff9a.zip frameworks_base-6dd6aac9ef75ed336711a5d69e90e3fccf98ff9a.tar.gz frameworks_base-6dd6aac9ef75ed336711a5d69e90e3fccf98ff9a.tar.bz2 |
am 099003bd: am 664eddfd: am 4dd56c93: TIF: Add more documentation on start/end time of TvContract.Program
* commit '099003bd20108ee5f2c5cdd00b78fc1779385714':
TIF: Add more documentation on start/end time of TvContract.Program
-rw-r--r-- | media/java/android/media/tv/TvContract.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/media/java/android/media/tv/TvContract.java b/media/java/android/media/tv/TvContract.java index 691df77..5b92266 100644 --- a/media/java/android/media/tv/TvContract.java +++ b/media/java/android/media/tv/TvContract.java @@ -856,6 +856,9 @@ public final class TvContract { /** * The start time of this TV program, in milliseconds since the epoch. * <p> + * The value should be equal to or larger than {@link #COLUMN_END_TIME_UTC_MILLIS} of the + * previous program in the same channel. + * </p><p> * Type: INTEGER (long) * </p> */ @@ -864,6 +867,9 @@ public final class TvContract { /** * The end time of this TV program, in milliseconds since the epoch. * <p> + * The value should be equal to or less than {@link #COLUMN_START_TIME_UTC_MILLIS} of the + * next program in the same channel. + * </p><p> * Type: INTEGER (long) * </p> */ |