Viele Warnings durch Kommentare beseitigt

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@312 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-05-29 20:36:26 +02:00
parent 65d08ea450
commit e4a1246f01
8 changed files with 51 additions and 10 deletions

View file

@ -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();
}