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:
Matthias Schiffer 2011-06-07 21:51:20 +02:00
parent 244abb7e73
commit 8b763a817b
11 changed files with 185 additions and 55 deletions

View file

@ -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>>();

View file

@ -3,6 +3,7 @@ package jrummikub.model;
/**
* Mock class for {@link Player}
*/
@SuppressWarnings("serial")
public class MockPlayer implements IPlayer {
/** */
public IHand hand;

View file

@ -7,6 +7,7 @@ import java.util.List;
/**
* Mock class for {@link RoundState}
*/
@SuppressWarnings("serial")
public class MockRoundState implements IRoundState {
/** */
public MockTable table;

View file

@ -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>();