diff options
| author | Alon Albert <aalbert@google.com> | 2012-03-01 16:05:55 -0800 |
|---|---|---|
| committer | Alon Albert <aalbert@google.com> | 2012-03-02 09:43:17 -0800 |
| commit | dc927307ec69dcda57a05b51bcab78cb994f350b (patch) | |
| tree | 0203d886aa89b5adf12aa11101aa982bad002d17 /core/java/android | |
| parent | 3c90952036a5ff7ddb2946c643f1a0bf1c31d53a (diff) | |
Add a displayColor column to view_events
Change-Id: I0f73685ec75e56929553b01d6ede0ad11fba55f4
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/CalendarContract.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/provider/CalendarContract.java b/core/java/android/provider/CalendarContract.java index fa59b32fddfc..83799c4440c9 100644 --- a/core/java/android/provider/CalendarContract.java +++ b/core/java/android/provider/CalendarContract.java @@ -856,6 +856,17 @@ public final class CalendarContract { public static final String EVENT_COLOR_KEY = "eventColor_index"; /** + * This will be {@link #EVENT_COLOR} if it is not null; otherwise, this will be + * {@link Calendars#CALENDAR_COLOR}. + * Read-only value. To modify, write to {@link #EVENT_COLOR} or + * {@link Calendars#CALENDAR_COLOR} directly. + *<P> + * Type: INTEGER + *</P> + */ + public static final String DISPLAY_COLOR = "displayColor"; + + /** * The event status. Column name. * <P>Type: INTEGER (one of {@link #STATUS_TENTATIVE}...)</P> */ |
