RoboterFabrik/Roboter/tpe/exceptions/roboter/C3PO.java

50 lines
798 B
Java
Raw Normal View History

2022-12-27 11:09:41 +01:00
package tpe.exceptions.roboter;
2023-01-07 14:15:53 +01:00
import tpe.exceptions.RobotException;
2022-12-27 11:09:41 +01:00
public class C3PO implements Robot{
2022-12-27 11:09:41 +01:00
@Override
public String speak(int[] zahlen) {
// TODO Auto-generated method stub
return null;
}
@Override
public int[] think(int[] zahlen) {
// TODO Auto-generated method stub
return null;
}
@Override
public int getId() {
// TODO Auto-generated method stub
return 0;
}
@Override
public String getName() {
// TODO Auto-generated method stub
return null;
}
@Override
public void triggerPowerSwitch() {
// TODO Auto-generated method stub
}
@Override
public boolean isPowerOn() {
// TODO Auto-generated method stub
return false;
}
@Override
public RobotException getLastException() {
// TODO Auto-generated method stub
return null;
}
}