summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author John Spurlock <jspurlock@google.com> 2014-03-19 19:29:34 -0400
committer John Spurlock <jspurlock@google.com> 2014-03-19 19:29:34 -0400
commita1bfe65daa15fe93ecd23486cfc4a9a722ca039d (patch)
tree128c1aa1375c891676bf7871b8ad93e68f2836d6
parent5b39f63c2489c16e2409c7e6bac7cced7a23c049 (diff)
Fix javadoc @links in Vibrator.
Change-Id: I5143334735a1bcdf8252687e703c74656ff9d126
-rw-r--r--core/java/android/os/Vibrator.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/os/Vibrator.java b/core/java/android/os/Vibrator.java
index 53034d8aa867..8845ba39af1b 100644
--- a/core/java/android/os/Vibrator.java
+++ b/core/java/android/os/Vibrator.java
@@ -72,8 +72,8 @@ public abstract class Vibrator {
*
* @param milliseconds The number of milliseconds to vibrate.
* @param streamHint An {@link AudioManager} stream type corresponding to the vibration type.
- * For example, specify {@link AudioManager.STREAM_ALARM} for alarm vibrations or
- * {@link AudioManager.STREAM_RING} for vibrations associated with incoming calls.
+ * For example, specify {@link AudioManager#STREAM_ALARM} for alarm vibrations or
+ * {@link AudioManager#STREAM_RING} for vibrations associated with incoming calls.
*/
public void vibrate(long milliseconds, int streamHint) {
vibrate(Process.myUid(), mPackageName, milliseconds, streamHint);
@@ -123,8 +123,8 @@ public abstract class Vibrator {
* @param repeat the index into pattern at which to repeat, or -1 if
* you don't want to repeat.
* @param streamHint An {@link AudioManager} stream type corresponding to the vibration type.
- * For example, specify {@link AudioManager.STREAM_ALARM} for alarm vibrations or
- * {@link AudioManager.STREAM_RING} for vibrations associated with incoming calls.
+ * For example, specify {@link AudioManager#STREAM_ALARM} for alarm vibrations or
+ * {@link AudioManager#STREAM_RING} for vibrations associated with incoming calls.
*/
public void vibrate(long[] pattern, int repeat, int streamHint) {
vibrate(Process.myUid(), mPackageName, pattern, repeat, streamHint);