generated from hummel/Bank-System
19 lines
247 B
Java
19 lines
247 B
Java
|
package tpe.facade;
|
||
|
|
||
|
import tpe.exceptions.roboter.C3PO;
|
||
|
import tpe.exceptions.roboter.R2D2;
|
||
|
|
||
|
public class RobotFactory {
|
||
|
private R2D2 r2d2;
|
||
|
private C3PO c3po;
|
||
|
enum RobotType{
|
||
|
R2D2,
|
||
|
C3PO,
|
||
|
NEXUS6
|
||
|
}
|
||
|
public int constructRobot() {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|