blob: dee37efd98d1e47961af3c1c54172f9c3e8731ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package jrummikub.view;
import jrummikub.util.IEvent;
import jrummikub.util.IEvent3;
import jrummikub.util.MockEvent;
import jrummikub.util.MockEvent3;
/** */
public class MockLoginPanel implements ILoginPanel {
/** */
public MockEvent3<String, String, String> loginEvent = new MockEvent3<String, String, String>();
/** */
public MockEvent cancelEvent = new MockEvent();
@Override
public IEvent3<String, String, String> getLoginEvent() {
return loginEvent;
}
@Override
public IEvent getCancelEvent() {
return cancelEvent;
}
}
|