android.view.animation.AnimationSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.view.animation;
public class AnimationSet
extends android.view.animation.Animation
{
public AnimationSet(android.content.Context context, android.util.AttributeSet attrs) { throw new RuntimeException("Stub!"); }
public AnimationSet(boolean shareInterpolator) { throw new RuntimeException("Stub!"); }
protected android.view.animation.AnimationSet clone() throws java.lang.CloneNotSupportedException { throw new RuntimeException("Stub!"); }
public void setFillAfter(boolean fillAfter) { throw new RuntimeException("Stub!"); }
public void setFillBefore(boolean fillBefore) { throw new RuntimeException("Stub!"); }
public void setRepeatMode(int repeatMode) { throw new RuntimeException("Stub!"); }
public void setStartOffset(long startOffset) { throw new RuntimeException("Stub!"); }
public void setDuration(long durationMillis) { throw new RuntimeException("Stub!"); }
public void addAnimation(android.view.animation.Animation a) { throw new RuntimeException("Stub!"); }
public void setStartTime(long startTimeMillis) { throw new RuntimeException("Stub!"); }
public long getStartTime() { throw new RuntimeException("Stub!"); }
public void restrictDuration(long durationMillis) { throw new RuntimeException("Stub!"); }
public long getDuration() { throw new RuntimeException("Stub!"); }
public long computeDurationHint() { throw new RuntimeException("Stub!"); }
public boolean getTransformation(long currentTime, android.view.animation.Transformation t) { throw new RuntimeException("Stub!"); }
public void scaleCurrentDuration(float scale) { throw new RuntimeException("Stub!"); }
public void initialize(int width, int height, int parentWidth, int parentHeight) { throw new RuntimeException("Stub!"); }
public void reset() { throw new RuntimeException("Stub!"); }
public java.util.List getAnimations() { throw new RuntimeException("Stub!"); }
public boolean willChangeTransformationMatrix() { throw new RuntimeException("Stub!"); }
public boolean willChangeBounds() { throw new RuntimeException("Stub!"); }
}