summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorAndroid (Google) Code Review <android-gerrit@google.com>2009-07-22 15:27:57 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2009-07-22 15:27:57 -0700
commit6abef06ed05b3e5e60fa51902e63176e2f2a3a89 (patch)
tree8f9e6becb4f68cb2f4591cc80500aa463d6f20a6 /core/java
parentddbf560cfb643f5fe1a3721685b174347c9f17b2 (diff)
parent02c5b45565fd3a933b5dd5a868b7db33455d697c (diff)
downloadframeworks_base-6abef06ed05b3e5e60fa51902e63176e2f2a3a89.zip
frameworks_base-6abef06ed05b3e5e60fa51902e63176e2f2a3a89.tar.gz
frameworks_base-6abef06ed05b3e5e60fa51902e63176e2f2a3a89.tar.bz2
Merge change 8134
* changes: Adding contact group NOTES and SYSTEM_ID
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/provider/ContactsContract.java20
1 files changed, 17 insertions, 3 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java
index d626751..69c3d41 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -163,7 +163,7 @@ public final class ContactsContract {
/**
* The content:// style URI for this table joined with useful data from
- * {@link Data} and {@link Presence}.
+ * {@link Data}.
*/
public static final Uri CONTENT_SUMMARY_URI = Uri.withAppendedPath(AUTHORITY_URI,
"aggregates_summary");
@@ -179,7 +179,7 @@ public final class ContactsContract {
/**
* The content:// style URI for this table joined with useful data from
- * {@link Data} and {@link Presence}, filtered to include only starred aggregates
+ * {@link Data}, filtered to include only starred aggregates
* and the most frequently contacted aggregates.
*/
public static final Uri CONTENT_SUMMARY_STREQUENT_URI = Uri.withAppendedPath(
@@ -1118,6 +1118,20 @@ public final class ContactsContract {
public static final String TITLE_RES = "title_res";
/**
+ * Notes about the group.
+ * <p>
+ * Type: TEXT
+ */
+ public static final String NOTES = "notes";
+
+ /**
+ * The ID of this group if it is a System Group, i.e. a group that has a special meaning
+ * to the sync adapter, null otherwise.
+ * <P>Type: TEXT</P>
+ */
+ public static final String SYSTEM_ID = "system_id";
+
+ /**
* The total number of {@link Aggregates} that have
* {@link GroupMembership} in this group. Read-only value that is only
* present when querying {@link Groups#CONTENT_SUMMARY_URI}.
@@ -1162,7 +1176,7 @@ public final class ContactsContract {
/**
* The content:// style URI for this table joined with details data from
- * {@link Data} and {@link Presence}.
+ * {@link Data}.
*/
public static final Uri CONTENT_SUMMARY_URI = Uri.withAppendedPath(AUTHORITY_URI,
"groups_summary");