diff options
| -rw-r--r-- | core/java/android/content/Intent.java | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 3222b2b72342..8632db105e17 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1512,6 +1512,10 @@ public class Intent implements Parcelable, Cloneable { * </p><p> * See {@link android.os.PowerManager#isInteractive} for details. * </p> + * You <em>cannot</em> receive this through components declared in + * manifests, only by explicitly registering for it with + * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) + * Context.registerReceiver()}. * * <p class="note">This is a protected intent that can only be sent * by the system. @@ -1532,6 +1536,10 @@ public class Intent implements Parcelable, Cloneable { * </p><p> * See {@link android.os.PowerManager#isInteractive} for details. * </p> + * You <em>cannot</em> receive this through components declared in + * manifests, only by explicitly registering for it with + * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) + * Context.registerReceiver()}. * * <p class="note">This is a protected intent that can only be sent * by the system. @@ -1569,7 +1577,7 @@ public class Intent implements Parcelable, Cloneable { /** * Broadcast Action: The current time has changed. Sent every - * minute. You can <em>not</em> receive this through components declared + * minute. You <em>cannot</em> receive this through components declared * in manifests, only by explicitly registering for it with * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) * Context.registerReceiver()}. @@ -1915,7 +1923,7 @@ public class Intent implements Parcelable, Cloneable { * appropriately. * * <p class="note"> - * You can <em>not</em> receive this through components declared + * You <em>cannot</em> receive this through components declared * in manifests, only by explicitly registering for it with * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) * Context.registerReceiver()}. @@ -1942,7 +1950,7 @@ public class Intent implements Parcelable, Cloneable { * contents of the Intent. * * <p class="note"> - * You can <em>not</em> receive this through components declared + * You <em>cannot</em> receive this through components declared * in manifests, only by explicitly registering for it with * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) * Context.registerReceiver()}. See {@link #ACTION_BATTERY_LOW}, |