diff options
author | Oscar Montemayor <oam@google.com> | 2010-02-01 11:36:04 -0800 |
---|---|---|
committer | Oscar Montemayor <oam@google.com> | 2010-02-01 11:36:04 -0800 |
commit | cdc428bdb73db7e0d3403b6515c65573b182e218 (patch) | |
tree | 38c8f1fc4d6013281dab58b75c6a1f23931391e3 /core | |
parent | 8c38b241153058b4d02095bc9bd0ab6e1b8b1c1c (diff) | |
download | frameworks_base-cdc428bdb73db7e0d3403b6515c65573b182e218.zip frameworks_base-cdc428bdb73db7e0d3403b6515c65573b182e218.tar.gz frameworks_base-cdc428bdb73db7e0d3403b6515c65573b182e218.tar.bz2 |
Apps on SD project.
Javadoc fixes for new method in PackageManager class.
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/content/pm/PackageManager.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/java/android/content/pm/PackageManager.java b/core/java/android/content/pm/PackageManager.java index 1e45f17..745628a 100644 --- a/core/java/android/content/pm/PackageManager.java +++ b/core/java/android/content/pm/PackageManager.java @@ -615,13 +615,13 @@ public abstract class PackageManager { /** * Determines best place to install an application: either SD or internal FLASH. * Tweak the algorithm for best results. - * @param appInfo ApplicationInfo object og the package to install. + * @param appInfo ApplicationInfo object of the package to install. * Call utility method to obtain. * @param packageURI URI identifying the package's APK file. - * @return <code>INSTALL_ON_INTERNAL_FLASH</code> if it is best to install package on internal - * storage, <code>INSTALL_ON_SDCARD</code> if it is best to install package on SD card, - * and <code>INSTALL_FAILED_INSUFFICIENT_STORAGE</code> if insufficient space to safely install - * the application. <code>INSTALL_PARSE_FAILED_NOT_APK</code> Is returned if any input + * @return {@link INSTALL_ON_INTERNAL_FLASH} if it is best to install package on internal + * storage, {@link INSTALL_ON_SDCARD} if it is best to install package on SD card, + * and {@link INSTALL_FAILED_INSUFFICIENT_STORAGE} if insufficient space to safely install + * the application. {@link INSTALL_PARSE_FAILED_NOT_APK} Is returned if any input * parameter is <code>null</code>. * This recommendation does take into account the package's own flags. * @hide |