summaryrefslogtreecommitdiffstats
path: root/mock/jrummikub/util/MockEvent3.java
blob: 62c3ed973fc0bb3b80e003154cdb0a428ce76bdc (plain)
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
package jrummikub.util;

import java.util.HashSet;

/**
 * Mock class for Event2s
 * 
 * @param <T1>
 *            first event type
 * @param <T2>
 *            second event type
 * @param <T3>
 *            third event type
 */
public class MockEvent3<T1, T2, T3> implements IEvent3<T1, T2, T3> {
	/** */
	public HashSet<IListener3<T1, T2, T3>> listeners = new HashSet<IListener3<T1, T2, T3>>();

	@Override
	public Connection add(final IListener3<T1, T2, T3> listener) {
		listeners.add(listener);
		return new Connection() {

			@Override
			public void remove() {
				MockEvent3.this.remove(listener);
			}
		};
	}

	@Override
	public void remove(IListener3<T1, T2, T3> listener) {
		listeners.remove(listener);
	}

	/**
	 * @param value1
	 *            the first event parameter
	 * @param value2
	 *            the second event parameter
	 * @param value3
	 *            the third event parameter
	 */
	public void emit(T1 value1, T2 value2, T3 value3) {
		for (IListener3<T1, T2, T3> listener : listeners) {
			listener.handle(value1, value2, value3);
		}
	}
}