This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/mock/jrummikub/util/MockEvent2.java
Matthias Schiffer d6c4da6224 Show in start turn panel if a player has redealed or drawn the last stone
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@570 72836036-5685-4462-b002-a69064685172
2011-06-22 03:08:37 +02:00

46 lines
946 B
Java

package jrummikub.util;
import java.util.HashSet;
/**
* Mock class for Event2s
*
* @param <T1>
* first event type
* @param <T2>
* second event type
*/
public class MockEvent2<T1, T2> implements IEvent2<T1, T2> {
/** */
public HashSet<IListener2<T1, T2>> listeners = new HashSet<IListener2<T1, T2>>();
@Override
public Connection add(final IListener2<T1, T2> listener) {
listeners.add(listener);
return new Connection() {
@Override
public void remove() {
MockEvent2.this.remove(listener);
}
};
}
@Override
public void remove(IListener2<T1, T2> listener) {
listeners.remove(listener);
}
/**
* @param value1
* the first event parameter
* @param value2
* the second event parameter
*/
public void emit(T1 value1, T2 value2) {
for (IListener2<T1, T2> listener : new HashSet<IListener2<T1, T2>>(
listeners)) {
listener.handle(value1, value2);
}
}
}