summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorFabrice Di Meglio <fdimeglio@google.com>2012-09-07 11:37:34 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-09-07 11:37:35 -0700
commitbae1d478964f609f4ed37d629ed3247a12ed312e (patch)
treeeb6ded3a952327a8b8e2dd1731446e8c6889ed0d /graphics
parent56b6293976c37645476462e61ed554af495e3633 (diff)
parentc5daf84f6647d3280c59554cd6ec9c2a4f119bfc (diff)
downloadframeworks_base-bae1d478964f609f4ed37d629ed3247a12ed312e.zip
frameworks_base-bae1d478964f609f4ed37d629ed3247a12ed312e.tar.gz
frameworks_base-bae1d478964f609f4ed37d629ed3247a12ed312e.tar.bz2
Merge "Fix the build" into jb-mr1-dev
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) {