summaryrefslogtreecommitdiffstats
path: root/core/java/android
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2010-09-16 15:42:01 -0400
committerJoe Onorato <joeo@google.com>2010-09-16 16:01:53 -0400
commit9316232130fe831c998c9d7be9cf67294eccdcae (patch)
treecb93a373da2968ea641f986e68e11a9f3bfab369 /core/java/android
parent723331bde365a8b0db994a8f1856416aac2c23fa (diff)
downloadframeworks_base-9316232130fe831c998c9d7be9cf67294eccdcae.zip
frameworks_base-9316232130fe831c998c9d7be9cf67294eccdcae.tar.gz
frameworks_base-9316232130fe831c998c9d7be9cf67294eccdcae.tar.bz2
Fix broken javadoc.
Change-Id: I4729ebee36117f281af613e0b49f70d7dee5f334
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/animation/AnimatorListenerAdapter.java8
-rw-r--r--core/java/android/app/LoaderManagingFragment.java2
-rw-r--r--core/java/android/view/View.java8
3 files changed, 10 insertions, 8 deletions
diff --git a/core/java/android/animation/AnimatorListenerAdapter.java b/core/java/android/animation/AnimatorListenerAdapter.java
index 6182389..e5d70a4 100644
--- a/core/java/android/animation/AnimatorListenerAdapter.java
+++ b/core/java/android/animation/AnimatorListenerAdapter.java
@@ -24,28 +24,28 @@ package android.animation;
public abstract class AnimatorListenerAdapter implements Animator.AnimatorListener {
/**
- * {@inheritdoc}
+ * {@inheritDoc}
*/
@Override
public void onAnimationCancel(Animator animation) {
}
/**
- * {@inheritdoc}
+ * {@inheritDoc}
*/
@Override
public void onAnimationEnd(Animator animation) {
}
/**
- * {@inheritdoc}
+ * {@inheritDoc}
*/
@Override
public void onAnimationRepeat(Animator animation) {
}
/**
- * {@inheritdoc}
+ * {@inheritDoc}
*/
@Override
public void onAnimationStart(Animator animation) {
diff --git a/core/java/android/app/LoaderManagingFragment.java b/core/java/android/app/LoaderManagingFragment.java
index 5d417a0..af71170 100644
--- a/core/java/android/app/LoaderManagingFragment.java
+++ b/core/java/android/app/LoaderManagingFragment.java
@@ -148,7 +148,7 @@ public abstract class LoaderManagingFragment<D> extends Fragment
mStarted = false;
}
- /** TO DO: This needs to be turned into a retained fragment.
+ /* TO DO: This needs to be turned into a retained fragment.
@Override
public Object onRetainNonConfigurationInstance() {
// Pass the loader along to the next guy
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index d04007c..00efa90 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -5286,7 +5286,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
* The amount that the view is scaled in x around the pivot point, as a proportion of
* the view's unscaled width. A value of 1, the default, means that no scaling is applied.
*
- * @default 1.0f
+ * <p>By default, this is 1.0f.
+ *
* @see #getPivotX()
* @see #getPivotY()
* @return The scaling factor.
@@ -5318,7 +5319,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
* The amount that the view is scaled in y around the pivot point, as a proportion of
* the view's unscaled height. A value of 1, the default, means that no scaling is applied.
*
- * @default 1.0f
+ * <p>By default, this is 1.0f.
+ *
* @see #getPivotX()
* @see #getPivotY()
* @return The scaling factor.
@@ -5427,7 +5429,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
* The opacity of the view. This is a value from 0 to 1, where 0 means the view is
* completely transparent and 1 means the view is completely opaque.
*
- * @default 1.0f
+ * <p>By default this is 1.0f.
* @return The opacity of the view.
*/
public float getAlpha() {