blob: 3d1edc90b2477f007c18e77ad19d72e5fe8411c2 [file] [log] [blame]
package android.view.animation;
import com.xtremelabs.robolectric.internal.DoNotInstrument;
@DoNotInstrument
public class ShadowAnimationBridge {
private Animation realAnimation;
public ShadowAnimationBridge(Animation realAnimation) {
this.realAnimation = realAnimation;
}
public void applyTransformation(float interpolatedTime, Transformation t) {
realAnimation.applyTransformation(interpolatedTime, t);
}
}