Fix some javadoc link/see's to fix the build for the sdk-win_sdk target.

Change-Id: I243c19d3d7f1ed2decbd6bfc7ecbe6ce2b582fc2
This commit is contained in:
Wink Saville
2010-06-12 22:16:41 -07:00
parent 70bd2f2099
commit 4dc643eb67
3 changed files with 7 additions and 8 deletions

View File

@@ -52,7 +52,7 @@ public abstract class ActionBar {
/**
* Custom navigation mode. This navigation mode is set implicitly whenever
* a custom navigation view is set. See {@link #setCustomNavigationView(View)}.
* a custom navigation view is set. See {@link #setCustomNavigationMode(View)}.
*/
public static final int NAVIGATION_MODE_CUSTOM = 3;

View File

@@ -360,7 +360,7 @@ public class Fragment implements ComponentCallbacks {
/**
* Report that this fragment would like to participate in populating
* the options menu by receiving a call to {@link #onCreateOptionsMenu(Menu)}
* the options menu by receiving a call to {@link #onCreateOptionsMenu}
* and related methods.
*
* @param hasMenu If true, the fragment has menu items to contribute.
@@ -556,13 +556,12 @@ public class Fragment implements ComponentCallbacks {
/**
* Initialize the contents of the Activity's standard options menu. You
* should place your menu items in to <var>menu</var>. For this method
* to be called, you must have first called {@link #setHasMenu}. See
* {@link Activity#onCreateOptionsMenu(Menu) Activity.onCreateOptionsMenu}
* for more information.
* to be called, you must have first called {@link #setHasOptionsMenu}.
* See {@link Activity#onCreateOptionsMenu} for more information.
*
* @param menu The options menu in which you place your items.
*
* @see #setHasMenu
* @see #setHasOptionsMenu
* @see #onPrepareOptionsMenu
* @see #onOptionsItemSelected
*/
@@ -580,7 +579,7 @@ public class Fragment implements ComponentCallbacks {
* @param menu The options menu as last shown or first initialized by
* onCreateOptionsMenu().
*
* @see #setHasMenu
* @see #setHasOptionsMenu
* @see #onCreateOptionsMenu
*/
public void onPrepareOptionsMenu(Menu menu) {