-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBusEvents.java
More file actions
48 lines (38 loc) · 1.26 KB
/
BusEvents.java
File metadata and controls
48 lines (38 loc) · 1.26 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
package CustomsEvents;
import java.util.ArrayList;
import java.util.EventObject;
import java.util.HashMap;
import java.util.ListIterator;
import CustomsEvents.exceptions.NotImplementedMethodException;
import jdk.internal.util.xml.impl.Pair;
/**
* @author Adolfo Lopez Granados
*
*
*/
public final class BusEvents {
private static HashMap<String, ArrayList<EventInfo>> eventsMap =
new HashMap<String, ArrayList<EventInfo>> ();
public static void addEventListener(String eventKey, CustomEventsListener listener) {
EventInfo evtInfo = new EventInfo(eventKey, listener);
if (!eventsMap.containsKey(eventKey)) {
eventsMap.put(eventKey, new ArrayList<EventInfo> ());
}
eventsMap.get(eventKey).add(evtInfo);
}
public static void triggerEvents(String key, Object evt) {
try {
ListIterator li = eventsMap.get(key).listIterator();
while (li.hasNext()) {
EventInfo evtItem = (EventInfo) li.next();
try {
evtItem.getScope().triggerTo(evtItem,evt);
} catch (NotImplementedMethodException ex) {
System.out.println(ex.getMessage());
}
}
}catch (NullPointerException e ) {
System.out.println("The list of listeners is empty");
}
}
}