summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/util/IListener2.java
blob: 7d3a83746a714fb56a0711c36a455360138e2aaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package jrummikub.util;

/**
 * Interface for classes that can receive parameterless events having a two
 * parameters
 * 
 * @param <T1>
 *          type of the first event parameter
 * @param <T2>
 *          type of the first event parameter
 */
public interface IListener2<T1, T2> {
	/**
	 * This method is called whenever a class we're listening to emits an event
	 * 
	 * @param value1
	 *          the first event parameter
	 * @param value2
	 *          the second event parameter
	 */
	public void handle(T1 value1, T2 value2);
}