Skip to content

Commit 5554b70

Browse files
committed
Make component names visible in javadoc.
Change-Id: I3770ea6616b8425c387bcd27d668e3114b14335d
1 parent d3ce6f5 commit 5554b70

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/java/android/app/Activity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4644,7 +4644,7 @@ public View onCreateView(View parent, String name, Context context, AttributeSet
46444644

46454645
/**
46464646
* Print the Activity's state into the given stream. This gets invoked if
4647-
* you run "adb shell dumpsys activity <activity_component_name>".
4647+
* you run "adb shell dumpsys activity &lt;activity_component_name&gt;".
46484648
*
46494649
* @param prefix Desired prefix to prepend at each line of output.
46504650
* @param fd The raw file descriptor that the dump is being sent to.

core/java/android/app/Service.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,8 +666,8 @@ public final void stopForeground(boolean removeNotification) {
666666

667667
/**
668668
* Print the Service's state into the given stream. This gets invoked if
669-
* you run "adb shell dumpsys activity service <yourservicename>".
670-
* This is distinct from "dumpsys <servicename>", which only works for
669+
* you run "adb shell dumpsys activity service &lt;yourservicename&gt;".
670+
* This is distinct from "dumpsys &lt;servicename&gt;", which only works for
671671
* named system services and which invokes the {@link IBinder#dump} method
672672
* on the {@link IBinder} interface registered with ServiceManager.
673673
*

core/java/android/content/ContentProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ public void shutdown() {
11271127

11281128
/**
11291129
* Print the Provider's state into the given stream. This gets invoked if
1130-
* you run "adb shell dumpsys activity provider <provider_component_name>".
1130+
* you run "adb shell dumpsys activity provider &lt;provider_component_name&gt;".
11311131
*
11321132
* @param prefix Desired prefix to prepend at each line of output.
11331133
* @param fd The raw file descriptor that the dump is being sent to.

0 commit comments

Comments
 (0)