Implemented getResult and abort in TurnLogic

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@445 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Jannis Harder 2011-06-17 17:41:55 +02:00
parent 5ae0590dbc
commit 2c9f1d5d20
3 changed files with 96 additions and 40 deletions

View file

@ -77,9 +77,9 @@ public class Stone implements Sizeable, Serializable {
@Override
public String toString() {
if (joker) {
return "Stone[joker,color=" + color + "]";
return "[" + color + " J]";
} else {
return "Stone[value=" + value + ",color=" + color + "]";
return "[" + color + " " + value + "]";
}
}
}