Aufgabe 2 ausgeführt.
This commit is contained in:
parent
080ad01dbb
commit
e7f050813a
|
@ -1,3 +1,23 @@
|
||||||
public class Anwendung {
|
public class Anwendung {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Anwendung anwendung = new Anwendung();
|
||||||
|
anwendung.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void start() {
|
||||||
|
Kontroller kontroller = new Kontroller();
|
||||||
|
Parser parser = new Parser();
|
||||||
|
|
||||||
|
boolean macheWeiter = true;
|
||||||
|
while (macheWeiter) {
|
||||||
|
|
||||||
|
Befehl auszufuehrenderBefehl = parser.liefereBefehl();
|
||||||
|
if(! kontroller.verarbeiteBefehl(auszufuehrenderBefehl)) {
|
||||||
|
macheWeiter = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue