summaryrefslogtreecommitdiffstats
path: root/mock
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2011-05-26 16:02:33 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2011-05-26 16:02:33 +0200
commit3d74d1197419cde195be31de2b2d798abb171291 (patch)
tree55ebc64efe3dd14632cfc178f3a3cfa039bf6d07 /mock
parentcff3180460c8f0bfcb0cacac9f49f58d47bd19b1 (diff)
downloadJRummikub-3d74d1197419cde195be31de2b2d798abb171291.tar
JRummikub-3d74d1197419cde195be31de2b2d798abb171291.zip
Remove player labels at the table edges
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@283 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'mock')
-rw-r--r--mock/jrummikub/view/MockTablePanel.java21
-rw-r--r--mock/jrummikub/view/MockView.java6
2 files changed, 6 insertions, 21 deletions
diff --git a/mock/jrummikub/view/MockTablePanel.java b/mock/jrummikub/view/MockTablePanel.java
index 212452c..05ed6f5 100644
--- a/mock/jrummikub/view/MockTablePanel.java
+++ b/mock/jrummikub/view/MockTablePanel.java
@@ -30,12 +30,6 @@ public class MockTablePanel implements ITablePanel {
/** */
public MockStoneCollectionPanel stoneCollectionPanel = new MockStoneCollectionPanel();
- /** */
- public String leftPlayerName;
- /** */
- public String topPlayerName;
- /** */
- public String rightPlayerName;
/** */
public Iterable<Pair<StoneSet, Position>> stoneSets;
@@ -61,21 +55,6 @@ public class MockTablePanel implements ITablePanel {
}
@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;
}
diff --git a/mock/jrummikub/view/MockView.java b/mock/jrummikub/view/MockView.java
index 1536a5b..5e145da 100644
--- a/mock/jrummikub/view/MockView.java
+++ b/mock/jrummikub/view/MockView.java
@@ -90,4 +90,10 @@ public class MockView implements IView {
return null;
}
+ @Override
+ public void showSettingsPanel(boolean show) {
+ // TODO Auto-generated method stub
+
+ }
+
} \ No newline at end of file