summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2010-03-22 11:14:38 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-03-22 11:14:38 -0700
commit8dfdf46fbf63d57c91c043368c60e62d871b7050 (patch)
tree23475f341a8886ca3f1eb10a1947d4304eda34d7 /core/java
parent85861c7a6f8b00143ae3b33ac98db20bb5c539e4 (diff)
parent189f65c12ff673087fda20e33ebcfb603143c0d3 (diff)
Merge "Fix javadoc copy/paste error."
Diffstat (limited to 'core/java')
-rw-r--r--core/java/android/widget/TabWidget.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/widget/TabWidget.java b/core/java/android/widget/TabWidget.java
index 3328c1368c85..ea99f03840fc 100644
--- a/core/java/android/widget/TabWidget.java
+++ b/core/java/android/widget/TabWidget.java
@@ -216,9 +216,9 @@ public class TabWidget extends LinearLayout implements OnFocusChangeListener {
}
/**
- * Sets the drawable to use as the left part of the strip below the
+ * Sets the drawable to use as the right part of the strip below the
* tab indicators.
- * @param drawable the left strip drawable
+ * @param drawable the right strip drawable
*/
public void setRightStripDrawable(Drawable drawable) {
mBottomLeftStrip = drawable;
@@ -226,10 +226,10 @@ public class TabWidget extends LinearLayout implements OnFocusChangeListener {
invalidate(); }
/**
- * Sets the drawable to use as the left part of the strip below the
+ * Sets the drawable to use as the right part of the strip below the
* tab indicators.
* @param resId the resource identifier of the drawable to use as the
- * left strip drawable
+ * right strip drawable
*/
public void setRightStripDrawable(int resId) {
mBottomLeftStrip = mContext.getResources().getDrawable(resId);