summaryrefslogtreecommitdiffstats
path: root/mock/jrummikub/view/MockTablePanel.java
blob: 05ed6f5b48ace4239a16c898f5ec53af07b0eafe (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
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.MockEvent1;
import jrummikub.util.Pair;

/**
 * Mock class for TablePanel
 */
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 MockEvent1<Position> clickEvent = new MockEvent1<Position>();
	/** */
	public Event1<StoneSet> leftConnectorClickEvent = new Event1<StoneSet>();
	/** */
	public Event1<StoneSet> rightConnectorClickEvent = new Event1<StoneSet>();

	/** */
	public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();

	/** */
	public Iterable<Pair<StoneSet, Position>> stoneSets;

	@Override
	public IEvent2<Stone, Boolean> getStoneClickEvent() {
		return stoneClickEvent;
	}

	@Override
	public IEvent2<Stone, Boolean> getRangeClickEvent() {
		return rangeClickEvent;
	}

	@Override
	public IEvent2<Stone, Boolean> getSetClickEvent() {
		return setClickEvent;
	}

	@Override
	public IEvent1<Position> getClickEvent() {
		return clickEvent;
	}

	@Override
	public void setStoneSets(Iterable<Pair<StoneSet, Position>> stoneSets) {
		this.stoneSets = stoneSets;
	}

	@Override
	public IStoneCollectionPanel getStoneCollectionPanel() {
		return stoneCollectionPanel;
	}

	@Override
	public Event1<StoneSet> getLeftConnectorClickEvent() {
		return leftConnectorClickEvent;
	}

	@Override
	public Event1<StoneSet> getRightConnectorClickEvent() {
		return rightConnectorClickEvent;
	}

}