summaryrefslogtreecommitdiffstats
path: root/core/java
diff options
context:
space:
mode:
authorMichael Chan <mchan@android.com>2012-04-17 18:40:51 -0700
committerMichael Chan <mchan@android.com>2012-04-17 19:03:38 -0700
commit37f1d29784ecedf8c1f1ac128c72ef3bfb5c7066 (patch)
tree5eaff719cb4f207dd45c6b76cd26346ed4c3bdd8 /core/java
parent62d52f9ff8b57fcd5f7fc6e2373ec5851eb80757 (diff)
downloadframeworks_base-37f1d29784ecedf8c1f1ac128c72ef3bfb5c7066.zip
frameworks_base-37f1d29784ecedf8c1f1ac128c72ef3bfb5c7066.tar.gz
frameworks_base-37f1d29784ecedf8c1f1ac128c72ef3bfb5c7066.tar.bz2
Added identity and namespace to Calendar Attendees
Bug: 6353721 Change-Id: I8cf7a5bbeb5380320b9bb11875168bef4e180b31
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/provider/CalendarContract.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/java/android/provider/CalendarContract.java b/core/java/android/provider/CalendarContract.java
index eab456c..c4aa691 100644
--- a/core/java/android/provider/CalendarContract.java
+++ b/core/java/android/provider/CalendarContract.java
@@ -760,18 +760,16 @@ public final class CalendarContract {
/**
* The identity of the attendee as referenced in
* {@link ContactsContract.CommonDataKinds.Identity#IDENTITY}.
- * This is required only if ATTENDEE_ID_NAMESPACE is present. Column name.
+ * This is required only if {@link #ATTENDEE_ID_NAMESPACE} is present. Column name.
* <P>Type: STRING</P>
- * @hide
*/
public static final String ATTENDEE_IDENTITY = "attendeeIdentity";
/**
* The identity name space of the attendee as referenced in
* {@link ContactsContract.CommonDataKinds.Identity#NAMESPACE}.
- * This is required only if ATTENDEE_IDENTITY is present. Column name.
+ * This is required only if {@link #ATTENDEE_IDENTITY} is present. Column name.
* <P>Type: STRING</P>
- * @hide
*/
public static final String ATTENDEE_ID_NAMESPACE = "attendeeIdNamespace";
}