- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBusEvents.java
More file actions
Latest commit
48 lines (38 loc) · 1.26 KB
/
Copy pathBusEvents.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
packageCustomsEvents;
importjava.util.ArrayList;
importjava.util.EventObject;
importjava.util.HashMap;
importjava.util.ListIterator;
importCustomsEvents.exceptions.NotImplementedMethodException;
importjdk.internal.util.xml.impl.Pair;
/**
* @author Adolfo Lopez Granados
*
*
*/
publicfinalclassBusEvents {
privatestaticHashMap<String, ArrayList<EventInfo>> eventsMap =
newHashMap<String, ArrayList<EventInfo>> ();
publicstaticvoidaddEventListener(StringeventKey, CustomEventsListenerlistener) {
EventInfoevtInfo = newEventInfo(eventKey, listener);
if (!eventsMap.containsKey(eventKey)) {
eventsMap.put(eventKey, newArrayList<EventInfo> ());
}
eventsMap.get(eventKey).add(evtInfo);
}
publicstaticvoidtriggerEvents(Stringkey, Objectevt) {
try {
ListIteratorli = eventsMap.get(key).listIterator();
while (li.hasNext()) {
EventInfoevtItem = (EventInfo) li.next();
try {
evtItem.getScope().triggerTo(evtItem,evt);
} catch (NotImplementedMethodExceptionex) {
System.out.println(ex.getMessage());
}
}
}catch (NullPointerExceptione ) {
System.out.println("The list of listeners is empty");
}
}
}