diff options
| author | 2014-10-30 14:17:41 +0900 | |
|---|---|---|
| committer | 2014-11-03 10:58:00 +0900 | |
| commit | 4dd56c93e363aeb10ce94a57a33e8fe4f60e226a (patch) | |
| tree | 8e2d92b2258ea2c070925ac81bce5baffb1eaac8 | |
| parent | 8d262c3a033b9123f42a8ad1a3925684264b8450 (diff) | |
TIF: Add more documentation on start/end time of TvContract.Program
Bug: 18163685
Change-Id: Ifcd57330eb341adfbcb7fcf3482a701471bf729f
| -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 691df77e9541..5b922664e15e 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> */ |