summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDongwon Kang <dwkang@google.com>2014-11-03 04:16:34 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-03 04:16:34 +0000
commit664eddfdc76cbe17f8b26d65528335d5430a6874 (patch)
tree8514bc97c1d3c533e1a680107c4e882ddb3c31c4
parent4e439d0312b753b1162519baa473e5358c842069 (diff)
parent4dd56c93e363aeb10ce94a57a33e8fe4f60e226a (diff)
downloadframeworks_base-664eddfdc76cbe17f8b26d65528335d5430a6874.zip
frameworks_base-664eddfdc76cbe17f8b26d65528335d5430a6874.tar.gz
frameworks_base-664eddfdc76cbe17f8b26d65528335d5430a6874.tar.bz2
am 4dd56c93: TIF: Add more documentation on start/end time of TvContract.Program
* commit '4dd56c93e363aeb10ce94a57a33e8fe4f60e226a': TIF: Add more documentation on start/end time of TvContract.Program
-rw-r--r--media/java/android/media/tv/TvContract.java6
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>
*/