Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/app/SharedElementCallback.java
Joe Farebrother 498ad230c2 Update stubs
2022-08-05 12:56:19 +01:00

28 lines
1.1 KiB
Java
Generated

// Generated automatically from android.app.SharedElementCallback for testing purposes
package android.app;
import android.content.Context;
import android.graphics.Matrix;
import android.graphics.RectF;
import android.os.Parcelable;
import android.view.View;
import java.util.List;
import java.util.Map;
abstract public class SharedElementCallback
{
public Parcelable onCaptureSharedElementSnapshot(View p0, Matrix p1, RectF p2){ return null; }
public SharedElementCallback(){}
public View onCreateSnapshotView(Context p0, Parcelable p1){ return null; }
public void onMapSharedElements(List<String> p0, Map<String, View> p1){}
public void onRejectSharedElements(List<View> p0){}
public void onSharedElementEnd(List<String> p0, List<View> p1, List<View> p2){}
public void onSharedElementStart(List<String> p0, List<View> p1, List<View> p2){}
public void onSharedElementsArrived(List<String> p0, List<View> p1, SharedElementCallback.OnSharedElementsReadyListener p2){}
static public interface OnSharedElementsReadyListener
{
void onSharedElementsReady();
}
}