diff options
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/content/BroadcastReceiver.java | 2 | ||||
| -rw-r--r-- | core/java/android/content/pm/PackageManager.java | 2 | ||||
| -rw-r--r-- | core/java/android/net/DummyDataStateTracker.java | 2 | ||||
| -rw-r--r-- | core/java/android/net/MobileDataStateTracker.java | 2 | ||||
| -rw-r--r-- | core/java/android/nfc/NdefRecord.java | 2 | ||||
| -rw-r--r-- | core/java/android/os/storage/StorageManager.java | 2 | ||||
| -rw-r--r-- | core/java/android/view/SurfaceHolder.java | 6 | ||||
| -rw-r--r-- | core/java/android/view/View.java | 2 | ||||
| -rw-r--r-- | core/java/android/view/ViewGroup.java | 2 | ||||
| -rw-r--r-- | core/java/android/view/textservice/TextServicesManager.java | 8 |
10 files changed, 15 insertions, 15 deletions
diff --git a/core/java/android/content/BroadcastReceiver.java b/core/java/android/content/BroadcastReceiver.java index 9ddb2a6f7bd6..446f1af41177 100644 --- a/core/java/android/content/BroadcastReceiver.java +++ b/core/java/android/content/BroadcastReceiver.java @@ -735,7 +735,7 @@ public abstract class BroadcastReceiver { /** * Control inclusion of debugging help for mismatched - * calls to {@ Context#registerReceiver(BroadcastReceiver, IntentFilter) + * calls to {@link Context#registerReceiver(BroadcastReceiver, IntentFilter) * Context.registerReceiver()}. * If called with true, before given to registerReceiver(), then the * callstack of the following {@link Context#unregisterReceiver(BroadcastReceiver) diff --git a/core/java/android/content/pm/PackageManager.java b/core/java/android/content/pm/PackageManager.java index f9f7e2d42351..cd7ef0e8160e 100644 --- a/core/java/android/content/pm/PackageManager.java +++ b/core/java/android/content/pm/PackageManager.java @@ -1610,7 +1610,7 @@ public abstract class PackageManager { * * @param flags Additional option flags. Use any combination of * {@link #GET_META_DATA}, {@link #GET_SHARED_LIBRARY_FILES}, - * {link #GET_UNINSTALLED_PACKAGES} to modify the data returned. + * {@link #GET_UNINSTALLED_PACKAGES} to modify the data returned. * * @return A List of ApplicationInfo objects, one for each application that * is installed on the device. In the unlikely case of there being diff --git a/core/java/android/net/DummyDataStateTracker.java b/core/java/android/net/DummyDataStateTracker.java index 9f0f9cd3f522..ccd96ff3c0c1 100644 --- a/core/java/android/net/DummyDataStateTracker.java +++ b/core/java/android/net/DummyDataStateTracker.java @@ -123,7 +123,7 @@ public class DummyDataStateTracker implements NetworkStateTracker { * Record the detailed state of a network, and if it is a * change from the previous state, send a notification to * any listeners. - * @param state the new @{code DetailedState} + * @param state the new {@code DetailedState} * @param reason a {@code String} indicating a reason for the state change, * if one was supplied. May be {@code null}. * @param extraInfo optional {@code String} providing extra information about the state change diff --git a/core/java/android/net/MobileDataStateTracker.java b/core/java/android/net/MobileDataStateTracker.java index 561294376335..1a9cff5748d0 100644 --- a/core/java/android/net/MobileDataStateTracker.java +++ b/core/java/android/net/MobileDataStateTracker.java @@ -373,7 +373,7 @@ public class MobileDataStateTracker implements NetworkStateTracker { * Record the detailed state of a network, and if it is a * change from the previous state, send a notification to * any listeners. - * @param state the new @{code DetailedState} + * @param state the new {@code DetailedState} * @param reason a {@code String} indicating a reason for the state change, * if one was supplied. May be {@code null}. * @param extraInfo optional {@code String} providing extra information about the state change diff --git a/core/java/android/nfc/NdefRecord.java b/core/java/android/nfc/NdefRecord.java index 887233523ca4..ed1c5b3e0f6b 100644 --- a/core/java/android/nfc/NdefRecord.java +++ b/core/java/android/nfc/NdefRecord.java @@ -70,7 +70,7 @@ import java.util.Locale; * indicate location with an NDEF message, provide support for chunking of * NDEF records, and to pack optional fields. This class does not expose * those details. To write an NDEF Record as binary you must first put it - * into an @{link NdefMessage}, then call {@link NdefMessage#toByteArray()}. + * into an {@link NdefMessage}, then call {@link NdefMessage#toByteArray()}. * <p class="note"> * {@link NdefMessage} and {@link NdefRecord} implementations are * always available, even on Android devices that do not have NFC hardware. diff --git a/core/java/android/os/storage/StorageManager.java b/core/java/android/os/storage/StorageManager.java index fbf512c843bb..cb6c1dc4cf97 100644 --- a/core/java/android/os/storage/StorageManager.java +++ b/core/java/android/os/storage/StorageManager.java @@ -289,7 +289,7 @@ public class StorageManager * Constructs a StorageManager object through which an application can * can communicate with the systems mount service. * - * @param tgtLooper The {@android.os.Looper} which events will be received on. + * @param tgtLooper The {@link android.os.Looper} which events will be received on. * * <p>Applications can get instance of this class by calling * {@link android.content.Context#getSystemService(java.lang.String)} with an argument diff --git a/core/java/android/view/SurfaceHolder.java b/core/java/android/view/SurfaceHolder.java index 2a16725ad321..015a78e0daa6 100644 --- a/core/java/android/view/SurfaceHolder.java +++ b/core/java/android/view/SurfaceHolder.java @@ -155,7 +155,7 @@ public interface SurfaceHolder { /** * Make the surface a fixed size. It will never change from this size. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. * * @param width The surface's width. @@ -167,14 +167,14 @@ public interface SurfaceHolder { * Allow the surface to resized based on layout of its container (this is * the default). When this is enabled, you should monitor * {@link Callback#surfaceChanged} for changes to the size of the surface. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. */ public void setSizeFromLayout(); /** * Set the desired PixelFormat of the surface. The default is OPAQUE. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. * * @param format A constant from PixelFormat. diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index a89c970a985d..50c34076a267 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2224,7 +2224,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * with a stable layout. (Note that you should avoid using * {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION} by itself.) * - * If you have set the window flag {@ WindowManager.LayoutParams#FLAG_FULLSCREEN} + * If you have set the window flag {@link WindowManager.LayoutParams#FLAG_FULLSCREEN} * to hide the status bar (instead of using {@link #SYSTEM_UI_FLAG_FULLSCREEN}), * then a hidden status bar will be considered a "stable" state for purposes * here. This allows your UI to continually hide the status bar, while still diff --git a/core/java/android/view/ViewGroup.java b/core/java/android/view/ViewGroup.java index 5ae9a5f086eb..95eed3346adb 100644 --- a/core/java/android/view/ViewGroup.java +++ b/core/java/android/view/ViewGroup.java @@ -5159,7 +5159,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } /** - * If {link #addStatesFromChildren} is true, refreshes this group's + * If {@link #addStatesFromChildren} is true, refreshes this group's * drawable state (to include the states from its children). */ public void childDrawableStateChanged(View child) { diff --git a/core/java/android/view/textservice/TextServicesManager.java b/core/java/android/view/textservice/TextServicesManager.java index 161e8fb3e45b..81b36db50b29 100644 --- a/core/java/android/view/textservice/TextServicesManager.java +++ b/core/java/android/view/textservice/TextServicesManager.java @@ -91,11 +91,11 @@ public final class TextServicesManager { /** * Get a spell checker session for the specified spell checker - * @param locale the locale for the spell checker. If {@param locale} is null and + * @param locale the locale for the spell checker. If {@code locale} is null and * referToSpellCheckerLanguageSettings is true, the locale specified in Settings will be - * returned. If {@param locale} is not null and referToSpellCheckerLanguageSettings is true, - * the locale specified in Settings will be returned only when it is same as {@param locale}. - * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@param locale} is + * returned. If {@code locale} is not null and referToSpellCheckerLanguageSettings is true, + * the locale specified in Settings will be returned only when it is same as {@code locale}. + * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@code locale} is * only language (e.g. "en"), the specified locale in Settings (e.g. "en_US") will be * selected. * @param listener a spell checker session lister for getting results from a spell checker. |
