-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathEvent.java
More file actions
52 lines (38 loc) · 1.15 KB
/
Event.java
File metadata and controls
52 lines (38 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Generated automatically from javafx.event.Event for testing purposes
package javafx.event;
import java.util.EventObject;
import javafx.event.EventTarget;
import javafx.event.EventType;
public class Event extends EventObject implements Cloneable {
protected Event() {
super(null);
}
protected EventTarget target = null;
protected EventType<? extends Event> eventType = null;
protected boolean consumed = false;
public Event copyFor(Object p0, EventTarget p1) {
return null;
}
public Event(EventType<? extends Event> p0) {
super(p0);
}
public Event(Object p0, EventTarget p1, EventType<? extends Event> p2) {
super(p0);
}
public EventTarget getTarget() {
return null;
}
public EventType<? extends Event> getEventType() {
return null;
}
public Object clone() {
return null;
}
public boolean isConsumed() {
return false;
}
public static EventTarget NULL_SOURCE_TARGET = null;
public static EventType<Event> ANY = null;
public static void fireEvent(EventTarget p0, Event p1) {}
public void consume() {}
}