summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/ISettingsPanel.java
diff options
context:
space:
mode:
authorIda Massow <massow@informatik.uni-luebeck.de>2011-05-30 20:16:48 +0200
committerIda Massow <massow@informatik.uni-luebeck.de>2011-05-30 20:16:48 +0200
commit1660736239d9f437f0ffa336d3f3bb8ed7ae407f (patch)
tree96185492c79b33ec3354b61550edff3f81c90aa1 /src/jrummikub/view/ISettingsPanel.java
parentc398c081ed4d83660ec867cabfb0ee9bc56b90ad (diff)
downloadJRummikub-1660736239d9f437f0ffa336d3f3bb8ed7ae407f.tar
JRummikub-1660736239d9f437f0ffa336d3f3bb8ed7ae407f.zip
Man kann jetzt die Anzahl der Steinsätze einstellen
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@328 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/view/ISettingsPanel.java')
-rw-r--r--src/jrummikub/view/ISettingsPanel.java33
1 files changed, 7 insertions, 26 deletions
diff --git a/src/jrummikub/view/ISettingsPanel.java b/src/jrummikub/view/ISettingsPanel.java
index 3caa8cb..5c83f47 100644
--- a/src/jrummikub/view/ISettingsPanel.java
+++ b/src/jrummikub/view/ISettingsPanel.java
@@ -132,6 +132,13 @@ public interface ISettingsPanel {
public void setGameSettings(GameSettings gameSettings);
/**
+ * Emitted when the joker number is changed
+ *
+ * @return the event
+ */
+ public IEvent1<Integer> getChangeJokerNumberEvent();
+
+ /**
* Specifies the different kinds of settings errors that can be displayed
*/
public enum SettingsError {
@@ -150,30 +157,4 @@ public interface ISettingsPanel {
/** Only computer players added */
COMPUTER_PLAYERS_ONLY_WARNING
}
-
- /**
- * Sets the initial meld threshold in the option pane
- *
- * @param value
- * initial meld threshold
- */
- public void setInitialMeldThreshold(int value);
-
- public void setStoneSetNumber(int number);
-
- /**
- * Emitted when the joker number is changed
- *
- * @return the event
- */
- public IEvent1<Integer> getChangeJokerNumberEvent();
-
-
- /**
- * Sets the joker number in the option pane
- *
- * @param jokerNumber
- * the joker number
- */
- public void setJokerNumber(int jokerNumber);
} \ No newline at end of file