summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view
diff options
context:
space:
mode:
authorIda Massow <massow@informatik.uni-luebeck.de>2011-05-29 20:36:26 +0200
committerIda Massow <massow@informatik.uni-luebeck.de>2011-05-29 20:36:26 +0200
commite4a1246f01c2a017042a2a80cc2e9a1e6b4bbd51 (patch)
tree5bdbf85e34096e222120996c2b213c8184ec695e /src/jrummikub/view
parent65d08ea450ac96ce35d1512707850524d805c790 (diff)
downloadJRummikub-e4a1246f01c2a017042a2a80cc2e9a1e6b4bbd51.tar
JRummikub-e4a1246f01c2a017042a2a80cc2e9a1e6b4bbd51.zip
Viele Warnings durch Kommentare beseitigt
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@312 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view')
-rw-r--r--src/jrummikub/view/IView.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/jrummikub/view/IView.java b/src/jrummikub/view/IView.java
index b1241c7..12475b5 100644
--- a/src/jrummikub/view/IView.java
+++ b/src/jrummikub/view/IView.java
@@ -112,9 +112,26 @@ public interface IView {
*/
public void showScorePanel(boolean show);
+ /**
+ * Is used for the PlayerPanel and ScorePanel to display a player's color
+ * along with the name
+ *
+ * @param color
+ */
public void setCurrentPlayerColor(Color color);
+ /**
+ * Is used for the PlayerPanel to display if a player has laid out along
+ * with the name
+ *
+ * @param hasLaidOut
+ */
public void setHasLaidOut(boolean hasLaidOut);
+ /**
+ * Is emitted if the player wants to end the game and start a new one
+ *
+ * @return newGameEvent
+ */
IEvent getNewGameEvent();
}