blob: ae1d6ce794756a147973e0c76f02fe21c2b66d14 (
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);
}
|