diff options
author | Kenny Root <kenny@the-b.org> | 2009-06-09 11:21:11 -0500 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2009-07-07 12:42:37 -0700 |
commit | 507f8ed2e05f97b20307b900fbc7308e0f8fdb83 (patch) | |
tree | e7a46a65ecd77490f19a428997676115dbbee635 /core/java/android/content/res | |
parent | c22457e80d388eefde4b491105cb238444ab4b90 (diff) | |
download | frameworks_base-507f8ed2e05f97b20307b900fbc7308e0f8fdb83.zip frameworks_base-507f8ed2e05f97b20307b900fbc7308e0f8fdb83.tar.gz frameworks_base-507f8ed2e05f97b20307b900fbc7308e0f8fdb83.tar.bz2 |
Fix Configuration documentation for new constants
* Added KEYBOARD_NOKEYS link to Javadoc for keyboard.
* Added NAVIGATION_NONAV link to Javadoc for navigation.
Diffstat (limited to 'core/java/android/content/res')
-rw-r--r-- | core/java/android/content/res/Configuration.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/content/res/Configuration.java b/core/java/android/content/res/Configuration.java index 577aa60..4928e93 100644 --- a/core/java/android/content/res/Configuration.java +++ b/core/java/android/content/res/Configuration.java @@ -60,7 +60,8 @@ public final class Configuration implements Parcelable, Comparable<Configuration /** * The kind of keyboard attached to the device. - * One of: {@link #KEYBOARD_QWERTY}, {@link #KEYBOARD_12KEY}. + * One of: {@link #KEYBOARD_NOKEYS}, {@link #KEYBOARD_QWERTY}, + * {@link #KEYBOARD_12KEY}. */ public int keyboard; @@ -99,8 +100,8 @@ public final class Configuration implements Parcelable, Comparable<Configuration /** * The kind of navigation method available on the device. - * One of: {@link #NAVIGATION_DPAD}, {@link #NAVIGATION_TRACKBALL}, - * {@link #NAVIGATION_WHEEL}. + * One of: {@link #NAVIGATION_NONAV}, {@link #NAVIGATION_DPAD}, + * {@link #NAVIGATION_TRACKBALL}, {@link #NAVIGATION_WHEEL}. */ public int navigation; |