summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/ISettingsPanel.java
diff options
context:
space:
mode:
authorJannis Harder <harder@informatik.uni-luebeck.de>2011-05-29 15:31:58 +0200
committerJannis Harder <harder@informatik.uni-luebeck.de>2011-05-29 15:31:58 +0200
commit7f89a1ce1067ec4ad31e0496bd679f70939aca10 (patch)
tree1cb657232dce8af662a1f7f5fd71230f94b75678 /src/jrummikub/view/ISettingsPanel.java
parentffbfc751c95b483f72bbb9ff47e4f04eef2c83cb (diff)
downloadJRummikub-7f89a1ce1067ec4ad31e0496bd679f70939aca10.tar
JRummikub-7f89a1ce1067ec4ad31e0496bd679f70939aca10.zip
Added options UI
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@294 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view/ISettingsPanel.java')
-rw-r--r--src/jrummikub/view/ISettingsPanel.java22
1 files changed, 15 insertions, 7 deletions
diff --git a/src/jrummikub/view/ISettingsPanel.java b/src/jrummikub/view/ISettingsPanel.java
index e2d5eff..95381a1 100644
--- a/src/jrummikub/view/ISettingsPanel.java
+++ b/src/jrummikub/view/ISettingsPanel.java
@@ -33,8 +33,8 @@ public interface ISettingsPanel {
};
/**
- * The add player event is emitted when the user wants to add a player to the
- * player list
+ * The add player event is emitted when the user wants to add a player to
+ * the player list
*
* @return the event
*/
@@ -83,7 +83,7 @@ public interface ISettingsPanel {
* Sets an error to display
*
* @param error
- * the kind of error
+ * the kind of error
*/
public void setError(SettingsError error);
@@ -91,7 +91,7 @@ public interface ISettingsPanel {
* Enables or disables the start game button
*
* @param enable
- * specifies if the button is to be enabled or disabled
+ * specifies if the button is to be enabled or disabled
*/
public void enableStartGameButton(boolean enable);
@@ -99,7 +99,7 @@ public interface ISettingsPanel {
* Enables or disables the add player button
*
* @param enable
- * specifies if the button is to be enabled or disabled
+ * specifies if the button is to be enabled or disabled
*/
public void enableAddPlayerButton(boolean enable);
@@ -107,7 +107,7 @@ public interface ISettingsPanel {
* Enables or disables the remove player buttons
*
* @param enable
- * specifies if the buttons are to be enabled or disabled
+ * specifies if the buttons are to be enabled or disabled
*/
public void enableRemovePlayerButtons(boolean enable);
@@ -116,7 +116,7 @@ public interface ISettingsPanel {
* Sets the game settings to display
*
* @param gameSettings
- * the settings
+ * the settings
*/
public void setGameSettings(GameSettings gameSettings);
@@ -131,4 +131,12 @@ public interface ISettingsPanel {
/** A player has an empty name */
NO_PLAYER_NAME
}
+
+ /**
+ * Sets the initial meld threshold in the option pane
+ *
+ * @param value
+ * initial meld threshold
+ */
+ public void setInitialMeldThreshold(int value);
} \ No newline at end of file