summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorkmccormick <kmccormick@google.com>2013-04-03 21:16:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-04-03 21:16:08 +0000
commit91e01a4d2ee09a1a6a226302cd6d524a1c96070f (patch)
tree150a5162b2d2983cea8aed6505c1cc404137ef25 /core
parent8b5e342b0e24b9bb546456209d9d27480fa233e8 (diff)
parente4ce502d77899d273fda6ab79568f112d7d66f0a (diff)
downloadframeworks_base-91e01a4d2ee09a1a6a226302cd6d524a1c96070f.zip
frameworks_base-91e01a4d2ee09a1a6a226302cd6d524a1c96070f.tar.gz
frameworks_base-91e01a4d2ee09a1a6a226302cd6d524a1c96070f.tar.bz2
Merge "Doc update: fix broken code sample" into jb-mr1.1-docs
Diffstat (limited to 'core')
-rw-r--r--core/java/android/provider/CalendarContract.java17
1 files changed, 7 insertions, 10 deletions
diff --git a/core/java/android/provider/CalendarContract.java b/core/java/android/provider/CalendarContract.java
index af6e88e9..0fa5799 100644
--- a/core/java/android/provider/CalendarContract.java
+++ b/core/java/android/provider/CalendarContract.java
@@ -106,16 +106,13 @@ public final class CalendarContract {
* {@link Activity#RESULT_OK} or {@link Activity#RESULT_CANCELED} to
* acknowledge whether the action was handled or not.
*
- * The custom app should have an intent-filter like the following
+ * The custom app should have an intent filter like the following:
* <pre>
- * {@code
- * <intent-filter>
- * <action android:name="android.provider.calendar.action.HANDLE_CUSTOM_EVENT" />
- * <category android:name="android.intent.category.DEFAULT" />
- * <data android:mimeType="vnd.android.cursor.item/event" />
- * </intent-filter>
- * }
- * </pre>
+ * &lt;intent-filter&gt;
+ * &lt;action android:name="android.provider.calendar.action.HANDLE_CUSTOM_EVENT" /&gt;
+ * &lt;category android:name="android.intent.category.DEFAULT" /&gt;
+ * &lt;data android:mimeType="vnd.android.cursor.item/event" /&gt;
+ * &lt;/intent-filter&gt;</pre>
* <p>
* Input: {@link Intent#getData} has the event URI. The extra
* {@link #EXTRA_EVENT_BEGIN_TIME} has the start time of the instance. The
@@ -123,7 +120,7 @@ public final class CalendarContract {
* {@link EventsColumns#CUSTOM_APP_URI}.
* <p>
* Output: {@link Activity#RESULT_OK} if this was handled; otherwise
- * {@link Activity#RESULT_CANCELED}
+ * {@link Activity#RESULT_CANCELED}.
*/
@SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
public static final String ACTION_HANDLE_CUSTOM_EVENT =