mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
36 lines
2 KiB
Java
36 lines
2 KiB
Java
|
package androidx.compose.ui.input.pointer;
|
||
|
|
||
|
import android.view.MotionEvent;
|
||
|
import java.util.List;
|
||
|
import kotlin.Metadata;
|
||
|
import kotlin.jvm.internal.Intrinsics;
|
||
|
|
||
|
/* compiled from: PointerInputEvent.android.kt */
|
||
|
@Metadata(d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010 \n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\b\b\u0000\u0018\u00002\u00020\u0001B#\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\f\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005\u0012\u0006\u0010\u0007\u001a\u00020\b¢\u0006\u0002\u0010\tR\u0011\u0010\u0007\u001a\u00020\b¢\u0006\b\n\u0000\u001a\u0004\b\n\u0010\u000bR\u0017\u0010\u0004\u001a\b\u0012\u0004\u0012\u00020\u00060\u0005¢\u0006\b\n\u0000\u001a\u0004\b\f\u0010\rR\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u000e\u0010\u000f¨\u0006\u0010"}, d2 = {"Landroidx/compose/ui/input/pointer/PointerInputEvent;", "", "uptime", "", "pointers", "", "Landroidx/compose/ui/input/pointer/PointerInputEventData;", "motionEvent", "Landroid/view/MotionEvent;", "(JLjava/util/List;Landroid/view/MotionEvent;)V", "getMotionEvent", "()Landroid/view/MotionEvent;", "getPointers", "()Ljava/util/List;", "getUptime", "()J", "ui_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class PointerInputEvent {
|
||
|
private final MotionEvent motionEvent;
|
||
|
private final List<PointerInputEventData> pointers;
|
||
|
private final long uptime;
|
||
|
|
||
|
public final MotionEvent getMotionEvent() {
|
||
|
return this.motionEvent;
|
||
|
}
|
||
|
|
||
|
public final List<PointerInputEventData> getPointers() {
|
||
|
return this.pointers;
|
||
|
}
|
||
|
|
||
|
public final long getUptime() {
|
||
|
return this.uptime;
|
||
|
}
|
||
|
|
||
|
public PointerInputEvent(long j, List<PointerInputEventData> pointers, MotionEvent motionEvent) {
|
||
|
Intrinsics.checkNotNullParameter(pointers, "pointers");
|
||
|
Intrinsics.checkNotNullParameter(motionEvent, "motionEvent");
|
||
|
this.uptime = j;
|
||
|
this.pointers = pointers;
|
||
|
this.motionEvent = motionEvent;
|
||
|
}
|
||
|
}
|