Fix mock
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@414 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
2c4d2ba28b
commit
014c4c357d
1 changed files with 7 additions and 0 deletions
|
@ -54,6 +54,8 @@ public class MockSettingsPanel implements ISettingsPanel {
|
||||||
/** */
|
/** */
|
||||||
public MockEvent1<Integer> changeTimeEvent = new MockEvent1<Integer>();
|
public MockEvent1<Integer> changeTimeEvent = new MockEvent1<Integer>();
|
||||||
/** */
|
/** */
|
||||||
|
public MockEvent1<Boolean> changeNoLimitsEvent = new MockEvent1<Boolean>();
|
||||||
|
/** */
|
||||||
public MockEvent1<Set<StoneColor>> changeStoneColorsEvent = new MockEvent1<Set<StoneColor>>();
|
public MockEvent1<Set<StoneColor>> changeStoneColorsEvent = new MockEvent1<Set<StoneColor>>();
|
||||||
/** */
|
/** */
|
||||||
public int initialMeldThreshold;
|
public int initialMeldThreshold;
|
||||||
|
@ -166,4 +168,9 @@ public class MockSettingsPanel implements ISettingsPanel {
|
||||||
public IEvent1<Integer> getChangeTimeEvent() {
|
public IEvent1<Integer> getChangeTimeEvent() {
|
||||||
return changeTimeEvent;
|
return changeTimeEvent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IEvent1<Boolean> getChangeNoLimitsEvent() {
|
||||||
|
return changeNoLimitsEvent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue