package jrummikub.view;
import java.util.Map;
import jrummikub.model.Position;
import jrummikub.model.Stone;
import jrummikub.model.StoneSet;
import jrummikub.util.Event1;
import jrummikub.util.IEvent1;
import jrummikub.util.IEvent2;
public class MockTablePanel implements ITablePanel {
public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();
public String leftPlayerName;
public String topPlayerName;
public String rightPlayerName;
@Override
public IEvent2<Stone, Boolean> getStoneClickEvent() {
// TODO Auto-generated method stub
return null;
}
public IEvent2<Stone, Boolean> getRangeClickEvent() {
public IEvent2<Stone, Boolean> getSetClickEvent() {
public IEvent1<Position> getClickEvent() {
public void setLeftPlayerName(String playerName) {
leftPlayerName = playerName;
public void setTopPlayerName(String playerName) {
topPlayerName = playerName;
public void setRightPlayerName(String playerName) {
rightPlayerName = playerName;
public void setStoneSets(Map<StoneSet, Position> stoneSets) {
public IStoneCollectionPanel getStoneCollectionPanel() {
public Event1<StoneSet> getLeftConnectorClickEvent() {
public Event1<StoneSet> getRightConnectorClickEvent() {