Added all missing comments
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@213 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
4a860e53cf
commit
3b49b2053e
38 changed files with 696 additions and 263 deletions
|
@ -1,8 +1,11 @@
|
|||
package jrummikub.util;
|
||||
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Mock class for Events
|
||||
*/
|
||||
public class MockEvent implements IEvent {
|
||||
/** */
|
||||
public HashSet<IListener> listeners = new HashSet<IListener>();
|
||||
|
||||
@Override
|
||||
|
@ -21,7 +24,8 @@ public class MockEvent implements IEvent {
|
|||
public void remove(IListener listener) {
|
||||
listeners.remove(listener);
|
||||
}
|
||||
|
||||
|
||||
/** */
|
||||
public void emit() {
|
||||
for (IListener listener : listeners) {
|
||||
listener.handle();
|
||||
|
|
|
@ -2,14 +2,21 @@ package jrummikub.util;
|
|||
|
||||
import java.util.HashSet;
|
||||
|
||||
/**
|
||||
* Mock class for Event1s
|
||||
*
|
||||
* @param <T>
|
||||
* event type
|
||||
*/
|
||||
public class MockEvent1<T> implements IEvent1<T> {
|
||||
/** */
|
||||
public HashSet<IListener1<T>> listeners = new HashSet<IListener1<T>>();
|
||||
|
||||
@Override
|
||||
public Connection add(final IListener1<T> listener) {
|
||||
listeners.add(listener);
|
||||
return new Connection() {
|
||||
|
||||
return new Connection() {
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
MockEvent1.this.remove(listener);
|
||||
|
@ -22,6 +29,9 @@ public class MockEvent1<T> implements IEvent1<T> {
|
|||
listeners.remove(listener);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param value
|
||||
*/
|
||||
public void emit(T value) {
|
||||
for (IListener1<T> listener : listeners) {
|
||||
listener.handle(value);
|
||||
|
|
|
@ -2,14 +2,23 @@ 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() {
|
||||
|
||||
return new Connection() {
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
MockEvent2.this.remove(listener);
|
||||
|
@ -22,6 +31,10 @@ public class MockEvent2<T1, T2> implements IEvent2<T1, T2> {
|
|||
listeners.remove(listener);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param value1
|
||||
* @param value2
|
||||
*/
|
||||
public void emit(T1 value1, T2 value2) {
|
||||
for (IListener2<T1, T2> listener : listeners) {
|
||||
listener.handle(value1, value2);
|
||||
|
|
Reference in a new issue