Rabbit-R1/android (non root)/java/sources/com/airbnb/lottie/model/animatable/AnimatableTextFrame.java
2024-05-21 17:08:36 -04:00

33 lines
1.2 KiB
Java

package com.airbnb.lottie.model.animatable;
import com.airbnb.lottie.animation.keyframe.TextKeyframeAnimation;
import com.airbnb.lottie.model.DocumentData;
import com.airbnb.lottie.value.Keyframe;
import java.util.List;
/* loaded from: classes2.dex */
public class AnimatableTextFrame extends BaseAnimatableValue<DocumentData, DocumentData> {
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
public /* bridge */ /* synthetic */ List getKeyframes() {
return super.getKeyframes();
}
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue, com.airbnb.lottie.model.animatable.AnimatableValue
public /* bridge */ /* synthetic */ boolean isStatic() {
return super.isStatic();
}
@Override // com.airbnb.lottie.model.animatable.BaseAnimatableValue
public /* bridge */ /* synthetic */ String toString() {
return super.toString();
}
public AnimatableTextFrame(List<Keyframe<DocumentData>> list) {
super((List) list);
}
@Override // com.airbnb.lottie.model.animatable.AnimatableValue
public TextKeyframeAnimation createAnimation() {
return new TextKeyframeAnimation(this.keyframes);
}
}