mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
26 lines
1.0 KiB
Java
Generated
26 lines
1.0 KiB
Java
Generated
// Generated automatically from android.animation.Keyframe for testing purposes
|
|
|
|
package android.animation;
|
|
|
|
import android.animation.TimeInterpolator;
|
|
|
|
abstract public class Keyframe implements Cloneable
|
|
{
|
|
public Class getType(){ return null; }
|
|
public Keyframe(){}
|
|
public TimeInterpolator getInterpolator(){ return null; }
|
|
public abstract Keyframe clone();
|
|
public abstract Object getValue();
|
|
public abstract void setValue(Object p0);
|
|
public boolean hasValue(){ return false; }
|
|
public float getFraction(){ return 0; }
|
|
public static Keyframe ofFloat(float p0){ return null; }
|
|
public static Keyframe ofFloat(float p0, float p1){ return null; }
|
|
public static Keyframe ofInt(float p0){ return null; }
|
|
public static Keyframe ofInt(float p0, int p1){ return null; }
|
|
public static Keyframe ofObject(float p0){ return null; }
|
|
public static Keyframe ofObject(float p0, Object p1){ return null; }
|
|
public void setFraction(float p0){}
|
|
public void setInterpolator(TimeInterpolator p0){}
|
|
}
|