RobotType in R2D2 angelegt und Enum RobotType erstellt
parent
d59ee7395f
commit
4e712da050
|
@ -1,29 +1,42 @@
|
|||
package Domäne;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import tpe.exceptions.roboter.Robot;
|
||||
import tpe.exceptions.roboter.RobotException;
|
||||
|
||||
public class R2D2 extends Roboter {
|
||||
int id;
|
||||
static int idZähler = 0;
|
||||
RobotType robotType;
|
||||
|
||||
|
||||
R2D2 (String name){
|
||||
super (name);
|
||||
this.robotType = RobotType.R2D2;
|
||||
this.id = idZähler;
|
||||
idZähler++;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String speak(int[] zahlen) throws RobotException {
|
||||
String ausgabe = "";
|
||||
for (int i = 0; i < zahlen.length; i++) {
|
||||
ausgabe = ausgabe + zahlen[i] +",";
|
||||
}
|
||||
return ausgabe;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int[] think(int[] zahlen) throws RobotException {
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int[] think(int[] zahlen) throws RobotException {
|
||||
public int getId() {
|
||||
// TODO Auto-generated method stub
|
||||
return null;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
package Domäne;
|
||||
|
||||
public enum RobotType {
|
||||
R2D2, C3PO
|
||||
}
|
Loading…
Reference in New Issue