Beispiel #1
0
 protected void fireResizedEvent(int columns, int rows) {
   for (EmulatorListener listener : listeners) {
     listener.notifyResized(columns, rows);
   }
 }
Beispiel #2
0
 protected void fireGraphModeEvent(int type, String text) {
   for (EmulatorListener listener : listeners) {
     listener.notifyGraphMode(type, text);
   }
 }