Viele Warnings durch Kommentare beseitigt
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@312 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
65d08ea450
commit
e4a1246f01
8 changed files with 51 additions and 10 deletions
|
@ -3,6 +3,7 @@ package jrummikub.view;
|
|||
import jrummikub.model.PlayerSettings;
|
||||
import jrummikub.model.Score;
|
||||
|
||||
/** */
|
||||
public class MockScorePanel implements IScorePanel {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -10,23 +10,38 @@ import jrummikub.util.MockEvent;
|
|||
import jrummikub.util.MockEvent1;
|
||||
import jrummikub.util.MockEvent2;
|
||||
|
||||
/** */
|
||||
public class MockSettingsPanel implements ISettingsPanel {
|
||||
|
||||
/** */
|
||||
public MockEvent addPlayerEvent = new MockEvent();
|
||||
/** */
|
||||
public MockEvent1<Integer> removePlayerEvent = new MockEvent1<Integer>();
|
||||
/** */
|
||||
public MockEvent2<Integer, Color> changePlayerColorEvent = new MockEvent2<Integer, Color>();
|
||||
/** */
|
||||
public MockEvent2<Integer, String> changePlayerNameEvent = new MockEvent2<Integer, String>();
|
||||
/** */
|
||||
public MockEvent startGameEvent = new MockEvent();
|
||||
/** */
|
||||
public SettingsError error = SettingsError.NO_ERROR;
|
||||
/** */
|
||||
public boolean startButtonEnabled = true;
|
||||
/** */
|
||||
public boolean addPlayerButtonEnabled = true;
|
||||
/** */
|
||||
public boolean removePlayerButtonsEnabled = false;
|
||||
/** */
|
||||
public GameSettings gameSettings = new GameSettings();
|
||||
|
||||
|
||||
/** */
|
||||
public MockEvent1<Integer> changeInitialMeldThresholdEvent = new MockEvent1<Integer>();
|
||||
/** */
|
||||
public MockEvent1<Integer> changeJokerNumberEvent = new MockEvent1<Integer>();
|
||||
|
||||
|
||||
/** */
|
||||
public int initialMeldThreshold;
|
||||
/** */
|
||||
public int jokerNumber;
|
||||
|
||||
@Override
|
||||
|
|
Reference in a new issue