Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2d14541 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am ef3aeeca: am 38a5a257: am 759a8978: Merge "Minor javadoc improvements for PackageManager."

* commit 'ef3aeeca':
  Minor javadoc improvements for PackageManager.
parents a0c808bb ef3aeeca
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -520,7 +520,7 @@ public abstract class PackageManager {
     * Installation return code: this is passed to the {@link IPackageInstallObserver} by
     * {@link #installPackage(android.net.Uri, IPackageInstallObserver, int)} if
     * the package being installed contains native code, but none that is
     * compatible with the the device's CPU_ABI.
     * compatible with the device's CPU_ABI.
     * @hide
     */
    @PrivateApi
@@ -3454,7 +3454,7 @@ public abstract class PackageManager {


    /**
     * Return the the enabled setting for a package component (activity,
     * Return the enabled setting for a package component (activity,
     * receiver, service, provider).  This returns the last value set by
     * {@link #setComponentEnabledSetting(ComponentName, int, int)}; in most
     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
@@ -3492,14 +3492,14 @@ public abstract class PackageManager {
            int newState, int flags);

    /**
     * Return the the enabled setting for an application.  This returns
     * Return the enabled setting for an application. This returns
     * the last value set by
     * {@link #setApplicationEnabledSetting(String, int, int)}; in most
     * cases this value will be {@link #COMPONENT_ENABLED_STATE_DEFAULT} since
     * the value originally specified in the manifest has not been modified.
     *
     * @param packageName The component to retrieve.
     * @return Returns the current enabled state for the component.  May
     * @param packageName The package name of the application to retrieve.
     * @return Returns the current enabled state for the application.  May
     * be one of {@link #COMPONENT_ENABLED_STATE_ENABLED},
     * {@link #COMPONENT_ENABLED_STATE_DISABLED}, or
     * {@link #COMPONENT_ENABLED_STATE_DEFAULT}.  The last one means the