From 3e257e3979f1f58d8b5ceb7a2d4472201bb94c34 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 3 May 2011 16:03:09 +0200 Subject: Renamed everything in the view git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@75 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/view/ITable.java | 51 ------------------------------------------ 1 file changed, 51 deletions(-) delete mode 100644 src/jrummikub/view/ITable.java (limited to 'src/jrummikub/view/ITable.java') diff --git a/src/jrummikub/view/ITable.java b/src/jrummikub/view/ITable.java deleted file mode 100644 index e257d26..0000000 --- a/src/jrummikub/view/ITable.java +++ /dev/null @@ -1,51 +0,0 @@ -package jrummikub.view; - -import java.util.Map; - -import jrummikub.model.Position; -import jrummikub.model.StoneSet; - -/** - * The view of the table, where the stone sets lie - */ -public interface ITable extends IClickable { - /** - * Sets the player name on the left label - * - * @param playerName - * the name to set - */ - public void setLeftPlayerName(String playerName); - - /** - * Sets the player name on the top label - * - * @param playerName - * the name to set - */ - public void setTopPlayerName(String playerName); - - /** - * Sets the player name on the right label - * - * @param playerName - * the name to set - */ - public void setRightPlayerName(String playerName); - - /** - * Sets the stone sets lying on the table - * - * @param stoneSets - * set stone sets on the table - */ - public void setStoneSets(Map stoneSets); - - /** - * Returns the stone collection (the panel showing the stones currently - * selected) - * - * @return the stone collection - */ - IStoneCollection getStoneCollection(); -} -- cgit v1.2.3