-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvent.java
More file actions
47 lines (36 loc) · 929 Bytes
/
Event.java
File metadata and controls
47 lines (36 loc) · 929 Bytes
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
package dev.lofiz.arial.event;
import net.example.client.ClientClass;
import java.lang.reflect.InvocationTargetException;
public abstract class Event {
private boolean cancelled;
public enum State {
PRE("PRE", 0), POST("POST", 1);
private State(String string, int number) {
}
}
public Event call() {
this.cancelled = false;
Event.call(this);
return this;
}
public boolean isCancelled() {
return this.cancelled;
}
public void setCancelled(boolean cancelled) {
this.cancelled = cancelled;
}
private static void call(Event event) {
ArrayHelper<Data> dataList = ClientClass.getInstance().eventManager.get(event.getClass());
if (dataList != null) {
for (Data data : dataList) {
try {
data.target.invoke(data.source, event);
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
}