Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/view/WindowInsetsAnimationController.java
Tony Torralba a59a4024a5 Update stubs
2022-01-14 10:32:36 +01:00

21 lines
577 B
Java
Generated

// Generated automatically from android.view.WindowInsetsAnimationController for testing purposes
package android.view;
import android.graphics.Insets;
public interface WindowInsetsAnimationController
{
Insets getCurrentInsets();
Insets getHiddenStateInsets();
Insets getShownStateInsets();
boolean isCancelled();
boolean isFinished();
default boolean isReady(){ return false; }
float getCurrentAlpha();
float getCurrentFraction();
int getTypes();
void finish(boolean p0);
void setInsetsAndAlpha(Insets p0, float p1, float p2);
}