summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/util/IListener3.java
blob: a4f8474430d60ea88a2e964ca1a58294e58221a2 (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 IListener3<T1, T2, T3> {
	/**
	 * 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, T3 value3);
}