mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
27 lines
1.3 KiB
Java
Generated
27 lines
1.3 KiB
Java
Generated
// Generated automatically from javafx.scene.input.SwipeEvent for testing purposes
|
|
|
|
package javafx.scene.input;
|
|
|
|
import javafx.event.Event;
|
|
import javafx.event.EventTarget;
|
|
import javafx.event.EventType;
|
|
import javafx.scene.input.GestureEvent;
|
|
import javafx.scene.input.PickResult;
|
|
|
|
public class SwipeEvent extends GestureEvent
|
|
{
|
|
protected SwipeEvent() {}
|
|
public EventType<SwipeEvent> getEventType(){ return null; }
|
|
public String toString(){ return null; }
|
|
public SwipeEvent copyFor(Object p0, EventTarget p1){ return null; }
|
|
public SwipeEvent copyFor(Object p0, EventTarget p1, EventType<SwipeEvent> p2){ return null; }
|
|
public SwipeEvent(EventType<SwipeEvent> p0, double p1, double p2, double p3, double p4, boolean p5, boolean p6, boolean p7, boolean p8, boolean p9, int p10, PickResult p11){}
|
|
public SwipeEvent(Object p0, EventTarget p1, EventType<SwipeEvent> p2, double p3, double p4, double p5, double p6, boolean p7, boolean p8, boolean p9, boolean p10, boolean p11, int p12, PickResult p13){}
|
|
public int getTouchCount(){ return 0; }
|
|
public static EventType<SwipeEvent> ANY = null;
|
|
public static EventType<SwipeEvent> SWIPE_DOWN = null;
|
|
public static EventType<SwipeEvent> SWIPE_LEFT = null;
|
|
public static EventType<SwipeEvent> SWIPE_RIGHT = null;
|
|
public static EventType<SwipeEvent> SWIPE_UP = null;
|
|
}
|