Saving is working
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@382 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
244abb7e73
commit
8b763a817b
11 changed files with 185 additions and 55 deletions
|
@ -11,6 +11,7 @@ import jrummikub.util.Pair;
|
|||
/**
|
||||
* Mock class for {@link Hand}
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class MockHand implements IHand {
|
||||
/** */
|
||||
public List<Pair<Stone, Position>> stones = new ArrayList<Pair<Stone, Position>>();
|
||||
|
|
|
@ -3,6 +3,7 @@ package jrummikub.model;
|
|||
/**
|
||||
* Mock class for {@link Player}
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class MockPlayer implements IPlayer {
|
||||
/** */
|
||||
public IHand hand;
|
||||
|
|
|
@ -7,6 +7,7 @@ import java.util.List;
|
|||
/**
|
||||
* Mock class for {@link RoundState}
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class MockRoundState implements IRoundState {
|
||||
/** */
|
||||
public MockTable table;
|
||||
|
|
|
@ -11,6 +11,7 @@ import jrummikub.util.Pair;
|
|||
/**
|
||||
* Mock class for {@link Table}
|
||||
*/
|
||||
@SuppressWarnings("serial")
|
||||
public class MockTable implements ITable {
|
||||
/** */
|
||||
public Map<Stone, StoneSet> findStoneSet = new HashMap<Stone, StoneSet>();
|
||||
|
|
Reference in a new issue