noch mehr Kommentare

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@418 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-06-13 17:15:37 +02:00
parent ce7d43e365
commit 9f2d3aa5cd
2 changed files with 26 additions and 4 deletions

View file

@ -12,6 +12,8 @@ public interface IPlayerPanel {
*
* @param time
* the time left
* @param totalTime
* total time for a turn
*/
public void setTime(int time, int totalTime);
@ -24,8 +26,8 @@ public interface IPlayerPanel {
public IEvent getSortByGroupsEvent();
/**
* The sort by runs event is emitted when the player wants to sort his stones
* by runs
* The sort by runs event is emitted when the player wants to sort his
* stones by runs
*
* @return the event
*/

View file

@ -170,12 +170,32 @@ public interface ISettingsPanel {
*/
public IEvent1<Integer> getChangeJokerNumberEvent();
/**
* Emitted when totalTime for a turn is changed
*
* @return the event
*/
public IEvent1<Integer> getChangeTimeEvent();
/**
* Emitted when no limits is chosen
*
* @return the event
*/
public IEvent1<Boolean> getChangeNoLimitsEvent();
/**
* Emitted when the variables are reset to the default values
*
* @return the event
*/
public IEvent getSetVariantDefaultEvent();
/**
* Emitted when the children variant is chosen
*
* @return the event
*/
public IEvent getSetVariantChildrenEvent();
/**