Android: Fix Javadoc references

This commit is contained in:
Lioncash 2014-11-06 09:34:02 -05:00
parent 81dd3df3e4
commit 01789459d6
2 changed files with 11 additions and 12 deletions

View File

@ -318,7 +318,7 @@ public class DirectoryFragment extends DialogFragment
* It is possible to specify more than one allowed extension by
* simply calling this method with a different file extension specified.
*
* @param ext The file extension(s) to allow being shown in this DirectoryFragment.
* @param exts The file extension(s) to allow being shown in this DirectoryFragment.
*/
public void addAllowedExts(String... exts)
{

View File

@ -126,12 +126,11 @@ class PreferenceManagerCompat
* <p>
* If a preference hierarchy is given, the new preference hierarchies will
* be merged in.
*
* @param queryIntent The intent to match activities.
* @param rootPreferences Optional existing hierarchy to merge the new
* hierarchies into.
* @return The root hierarchy (if one was not provided, the new hierarchy's
* root).
*
* @param manager {@link PreferenceManager} context to use.
* @param intent The intent to match activities.
*
* @return The root hierarchy (if one was not provided, the new hierarchy's root).
*/
static PreferenceScreen inflateFromIntent(PreferenceManager manager, Intent intent, PreferenceScreen screen)
{
@ -153,10 +152,8 @@ class PreferenceManagerCompat
* Inflates a preference hierarchy from XML. If a preference hierarchy is
* given, the new preference hierarchies will be merged in.
*
* @param context The context of the resource.
* @param manager The context of the resource.
* @param resId The resource ID of the XML to inflate.
* @param rootPreferences Optional existing hierarchy to merge the new
* hierarchies into.
* @return The root hierarchy (if one was not provided, the new hierarchy's
* root).
* @hide
@ -254,8 +251,10 @@ class PreferenceManagerCompat
/**
* Sets the root of the preference hierarchy.
*
* @param preferenceScreen The root {@link PreferenceScreen} of the preference hierarchy.
*
* @param manager {@link PreferenceManager} context.
* @param screen The root {@link PreferenceScreen} of the preference hierarchy.
*
* @return Whether the {@link PreferenceScreen} given is different than the previous.
*/
static boolean setPreferences(PreferenceManager manager, PreferenceScreen screen)