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:
parent
ce7d43e365
commit
9f2d3aa5cd
2 changed files with 26 additions and 4 deletions
|
@ -11,7 +11,9 @@ public interface IPlayerPanel {
|
|||
* Sets the time the player has left for his turn
|
||||
*
|
||||
* @param time
|
||||
* the time left
|
||||
* 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
|
||||
*/
|
||||
|
@ -49,7 +51,7 @@ public interface IPlayerPanel {
|
|||
* Sets the buttons available to end the turn
|
||||
*
|
||||
* @param turnMode
|
||||
* the {@link TurnMode}
|
||||
* the {@link TurnMode}
|
||||
*/
|
||||
public void setEndTurnMode(TurnMode turnMode);
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
||||
/**
|
||||
|
|
Reference in a new issue