blob: c1d839c6c6fa8109c46a364dbd22533512604f44 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
package jrummikub.view;
import jrummikub.model.Position;
import jrummikub.model.Stone;
import jrummikub.model.StoneSet;
import jrummikub.util.Event1;
import jrummikub.util.Event2;
import jrummikub.util.IEvent1;
import jrummikub.util.IEvent2;
import jrummikub.util.Pair;
public class MockTablePanel implements ITablePanel {
public Event2<Stone, Boolean> stoneClickEvent = new Event2<Stone, Boolean>();
public Event2<Stone, Boolean> setClickEvent = new Event2<Stone, Boolean>();
public Event2<Stone, Boolean> rangeClickEvent = new Event2<Stone, Boolean>();
public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();
public String leftPlayerName;
public String topPlayerName;
public String rightPlayerName;
public Iterable<Pair<StoneSet, Position>> stoneSets;
@Override
public IEvent2<Stone, Boolean> getStoneClickEvent() {
// TODO Auto-generated method stub
return null;
}
@Override
public IEvent2<Stone, Boolean> getRangeClickEvent() {
// TODO Auto-generated method stub
return null;
}
@Override
public IEvent2<Stone, Boolean> getSetClickEvent() {
// TODO Auto-generated method stub
return null;
}
@Override
public IEvent1<Position> getClickEvent() {
// TODO Auto-generated method stub
return null;
}
@Override
public void setLeftPlayerName(String playerName) {
leftPlayerName = playerName;
}
@Override
public void setTopPlayerName(String playerName) {
topPlayerName = playerName;
}
@Override
public void setRightPlayerName(String playerName) {
rightPlayerName = playerName;
}
@Override
public void setStoneSets(Iterable<Pair<StoneSet, Position>> stoneSets) {
this.stoneSets = stoneSets;
}
@Override
public IStoneCollectionPanel getStoneCollectionPanel() {
return stoneCollectionPanel;
}
@Override
public Event1<StoneSet> getLeftConnectorClickEvent() {
// TODO Auto-generated method stub
return null;
}
@Override
public Event1<StoneSet> getRightConnectorClickEvent() {
// TODO Auto-generated method stub
return null;
}
}
|