summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jae Seo <jaeseo@google.com> 2016-05-10 15:17:08 -0700
committer Jae Seo <jaeseo@google.com> 2016-05-10 15:17:08 -0700
commit0129c03357a4338876865863ad177ace3011bbef (patch)
treef66194d8e603d8963e00a47438eaa70150e4b890
parent1100edb83fd8099609ffed9ea1290f95d15f7ca0 (diff)
TIF: Fix comments for program start/end times
Bug: 28681747 Change-Id: I28a7359121ca1740c043806e1532ce922c753cbc
-rw-r--r--media/java/android/media/tv/TvContract.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/media/java/android/media/tv/TvContract.java b/media/java/android/media/tv/TvContract.java
index db7b43abaf3d..3a3460bbca17 100644
--- a/media/java/android/media/tv/TvContract.java
+++ b/media/java/android/media/tv/TvContract.java
@@ -1044,7 +1044,8 @@ 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.
+ * previous program in the same channel. In practice, start time will usually be the end
+ * time of the previous program.
*
* <p>Type: INTEGER (long)
*/
@@ -1054,7 +1055,8 @@ 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.
+ * next program in the same channel. In practice, end time will usually be the start time of
+ * the next program.
*
* <p>Type: INTEGER (long)
*/