Keine Fehler mehr, sorry für das davor

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@250 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Ida Massow 2011-05-18 15:31:37 +02:00
parent b3c903a2ad
commit 0b252810c9
3 changed files with 15 additions and 9 deletions

View file

@ -13,7 +13,7 @@ public class MockPlayer implements IPlayer {
/** */ /** */
public Color color; public Color color;
/** */ /** */
public boolean cameOut; public boolean laidOut;
/** /**
* @param name * @param name
@ -25,12 +25,12 @@ public class MockPlayer implements IPlayer {
hand = new Hand(); hand = new Hand();
this.name = name; this.name = name;
this.color = color; this.color = color;
this.cameOut=false; laidOut = false;
} }
@Override @Override
public boolean getCameOut() { public boolean getLaidOut() {
return cameOut; return laidOut;
} }
@Override @Override

View file

@ -28,6 +28,6 @@ public interface IPlayer {
*/ */
public String getName(); public String getName();
boolean getCameOut(); boolean getLaidOut();
} }

View file

@ -8,6 +8,7 @@ public class Player implements IPlayer {
private IHand hand; private IHand hand;
private String name; private String name;
private Color color; private Color color;
private boolean laidOut;
/** /**
* Create a new player with a given name and color * Create a new player with a given name and color
@ -28,6 +29,11 @@ public class Player implements IPlayer {
return hand; return hand;
} }
@Override
public boolean getLaidOut() {
return laidOut;
}
@Override @Override
public Color getColor() { public Color getColor() {
return color; return color;