EOS 2  1.1.0
Einfache Objektbasierte Sprache
MachineListener.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.vm;
2 
3 
4 public interface MachineListener {
5  void handleError(Exception e);
6  void missingProgram();
7  void handleOrThrowException(Exception e);
8  void handleException(Exception e);
9  void startProgram();
10  void stopProgram();
11 }
void handleOrThrowException(Exception e)
Impressum