summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-08-05 14:22:05 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-08-05 14:22:05 -0700
commit46e1198c9ebc31949cb4d804fdaa2a4c9e8fd955 (patch)
tree37e8833af784bda497150fcc28d83f400d19a819 /core
parent20fefe90bc187c07a5c8b9a0be8f56d4576cfdac (diff)
parent79f0c56b63bd73585cebf6930c3783c140c6e465 (diff)
downloadframeworks_base-46e1198c9ebc31949cb4d804fdaa2a4c9e8fd955.zip
frameworks_base-46e1198c9ebc31949cb4d804fdaa2a4c9e8fd955.tar.gz
frameworks_base-46e1198c9ebc31949cb4d804fdaa2a4c9e8fd955.tar.bz2
Merge change 20146
* changes: Calendar attendee support: add columns.
Diffstat (limited to 'core')
-rw-r--r--core/java/android/provider/Calendar.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/provider/Calendar.java b/core/java/android/provider/Calendar.java
index 75bd989..489d936 100644
--- a/core/java/android/provider/Calendar.java
+++ b/core/java/android/provider/Calendar.java
@@ -217,6 +217,13 @@ public final class Calendar {
* <P>Type: INTEGER (boolean)</P>
*/
public static final String HIDDEN = "hidden";
+
+ /**
+ * The owner account for this calendar, based on the calendar feed.
+ * This will be different from the _SYNC_ACCOUNT for delegated calendars.
+ * <P>Type: String</P>
+ */
+ public static final String OWNER_ACCOUNT = "ownerAccount";
}
public interface AttendeesColumns {
@@ -458,6 +465,14 @@ public final class Calendar {
* <P>Type: INTEGER (long; millis since epoch)</P>
*/
public static final String LAST_DATE = "lastDate";
+
+ /**
+ * Whether the event has attendee information. True if the event
+ * has full attendee data, false if the event has information about
+ * self only.
+ * <P>Type: INTEGER (boolean)</P>
+ */
+ public static final String HAS_ATTENDEE_DATA = "hasAttendeeData";
}
/**