mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
21 lines
577 B
Java
Generated
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);
|
|
}
|