diff options
author | Romain Guy <romainguy@android.com> | 2009-12-08 15:03:39 -0800 |
---|---|---|
committer | Romain Guy <romainguy@android.com> | 2009-12-08 15:15:46 -0800 |
commit | ea4823c1c7fdee093789850d0f76a3df22ca58d2 (patch) | |
tree | c5aab941ffccd98c0f754a7f4a893a10085477de /core/java | |
parent | 1ee7b6453aaae47a6493a97790b9483aca1556c9 (diff) | |
download | frameworks_base-ea4823c1c7fdee093789850d0f76a3df22ca58d2.zip frameworks_base-ea4823c1c7fdee093789850d0f76a3df22ca58d2.tar.gz frameworks_base-ea4823c1c7fdee093789850d0f76a3df22ca58d2.tar.bz2 |
Improve javadoc in View.
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/view/View.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index d94d0c2..d3f46b8 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2589,8 +2589,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility * @param gainFocus True if the View has focus; false otherwise. * @param direction The direction focus has moved when requestFocus() * is called to give this view focus. Values are - * View.FOCUS_UP, View.FOCUS_DOWN, View.FOCUS_LEFT or - * View.FOCUS_RIGHT. It may not always apply, in which + * {@link #FOCUS_UP}, {@link #FOCUS_DOWN}, {@link #FOCUS_LEFT} or + * {@link #FOCUS_RIGHT}. It may not always apply, in which * case use the default. * @param previouslyFocusedRect The rectangle, in this view's coordinate * system, of the previously focused view. If applicable, this will be |