diff options
author | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-06-21 01:47:56 +0200 |
---|---|---|
committer | Jannis Harder <harder@informatik.uni-luebeck.de> | 2011-06-21 01:47:56 +0200 |
commit | 5656d8bb82e0fde95d9ce9fdaff450053a920045 (patch) | |
tree | 0bcc4a5789a4080adf72ddd62f27bf388514e507 /mock | |
parent | 72912be6008039ea81f875fe3be911cd4d66a8d4 (diff) | |
download | JRummikub-5656d8bb82e0fde95d9ce9fdaff450053a920045.tar JRummikub-5656d8bb82e0fde95d9ce9fdaff450053a920045.zip |
Fixed MockSettingsPanel
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@525 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'mock')
-rw-r--r-- | mock/jrummikub/view/MockSettingsPanel.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mock/jrummikub/view/MockSettingsPanel.java b/mock/jrummikub/view/MockSettingsPanel.java index 16c183c..a1ff9c5 100644 --- a/mock/jrummikub/view/MockSettingsPanel.java +++ b/mock/jrummikub/view/MockSettingsPanel.java @@ -65,6 +65,8 @@ public class MockSettingsPanel implements ISettingsPanel { /** */ public MockEvent1<Set<StoneColor>> changeStoneColorsEvent = new MockEvent1<Set<StoneColor>>(); /** */ + public MockEvent1<Boolean> changeSeeHandSizeEvent; + /** */ public int initialMeldThreshold; /** */ public int jokerNumber; @@ -227,4 +229,9 @@ public class MockSettingsPanel implements ISettingsPanel { // TODO Auto-generated method stub } + + @Override + public IEvent1<Boolean> getChangeSeeHandSizeEvent() { + return changeSeeHandSizeEvent; + } } |