diff options
| author | Chet Haase <chet@google.com> | 2010-09-07 13:20:00 -0700 |
|---|---|---|
| committer | Chet Haase <chet@google.com> | 2010-09-08 09:41:21 -0700 |
| commit | a18a86b43e40e3c15dcca0ae0148d641be9b25fe (patch) | |
| tree | 80f115b33fa69994f3cf7347d77c3463d1eda439 /core/java/android/animation/Keyframe.java | |
| parent | 789a47488c0e834eb80fe6b596dcc3e0ba7f1344 (diff) | |
Rename several animation classes
Change-Id: I6a4544875090db485163c8d56de8718f56d267c7
Diffstat (limited to 'core/java/android/animation/Keyframe.java')
| -rw-r--r-- | core/java/android/animation/Keyframe.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/animation/Keyframe.java b/core/java/android/animation/Keyframe.java index 7d4d1042859a..192ba5c78d02 100644 --- a/core/java/android/animation/Keyframe.java +++ b/core/java/android/animation/Keyframe.java @@ -20,7 +20,7 @@ import android.view.animation.Interpolator; /** * This class holds a time/value pair for an animation. The Keyframe class is used - * by {@link Animator} to define the values that the animation target will have over the course + * by {@link ValueAnimator} to define the values that the animation target will have over the course * of the animation. As the time proceeds from one keyframe to the other, the value of the * target object will animate between the value at the previous keyframe and the value at the * next keyframe. Each keyframe also holds an option {@link android.view.animation.Interpolator} @@ -59,7 +59,7 @@ public class Keyframe implements Cloneable { * the time in this keyframe, and the the value animated from as the time passes the time in * this keyframe. * @param valueType The type of the <code>value</code> object. This is used by the - * {@link #getValue()} functionm, which is queried by {@link Animator} to determine + * {@link #getValue()} functionm, which is queried by {@link ValueAnimator} to determine * the type of {@link TypeEvaluator} to use to interpolate between values. */ private Keyframe(float fraction, Object value, Class valueType) { @@ -239,7 +239,7 @@ public class Keyframe implements Cloneable { } /** - * Gets the type of keyframe. This information is used by Animator to determine the type of + * Gets the type of keyframe. This information is used by ValueAnimator to determine the type of * {@link TypeEvaluator} to use when calculating values between keyframes. The type is based * on the type of Keyframe created. * |
