summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2012-09-07 11:36:21 -0700
committerFabrice Di Meglio <fdimeglio@google.com>2012-09-07 11:36:21 -0700
commitc5daf84f6647d3280c59554cd6ec9c2a4f119bfc (patch)
tree997ab1bfd5d62c824054ea5789ee7abb1f8e430f /graphics
parent0af4b8b0c8b038bca9b4f60eb81f71e186f471ce (diff)
downloadframeworks_base-c5daf84f6647d3280c59554cd6ec9c2a4f119bfc.zip
frameworks_base-c5daf84f6647d3280c59554cd6ec9c2a4f119bfc.tar.gz
frameworks_base-c5daf84f6647d3280c59554cd6ec9c2a4f119bfc.tar.bz2
Fix the build
- use fully qualified name for Javadoc Change-Id: Ic75ce7e19d407dc40c96b585f9fa1827fb614ba1
Diffstat (limited to 'graphics')
-rw-r--r--graphics/java/android/graphics/drawable/Drawable.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/java/android/graphics/drawable/Drawable.java b/graphics/java/android/graphics/drawable/Drawable.java
index 4bc5a5a..020a54f 100644
--- a/graphics/java/android/graphics/drawable/Drawable.java
+++ b/graphics/java/android/graphics/drawable/Drawable.java
@@ -376,8 +376,8 @@ public abstract class Drawable {
/**
* Returns the resolved layout direction for this Drawable.
*
- * @return One of {@link View#LAYOUT_DIRECTION_LTR},
- * {@link View#LAYOUT_DIRECTION_RTL}
+ * @return One of {@link android.view.View#LAYOUT_DIRECTION_LTR},
+ * {@link android.view.View#LAYOUT_DIRECTION_RTL}
*/
public int getLayoutDirection() {
return mLayoutDirection;
@@ -387,8 +387,8 @@ public abstract class Drawable {
* Set the layout direction for this drawable. Should be a resolved direction as the
* Drawable as no capacity to do the resolution on his own.
*
- * @param layoutDirection One of {@link View#LAYOUT_DIRECTION_LTR},
- * {@link View#LAYOUT_DIRECTION_RTL},
+ * @param layoutDirection One of {@link android.view.View#LAYOUT_DIRECTION_LTR},
+ * {@link android.view.View#LAYOUT_DIRECTION_RTL},
*
*/
public void setLayoutDirection(int layoutDirection) {