85868788899091
/** * Handle key presses * @param key */ protected final void testKey(KeyEvent key){ new KeyPressEvent(key).notify(null); }
616263646566676869707172
for (IUpdatableComponent comp : updatables) { comp.testClick((Point)notice); } } if (e instanceof KeyPressEvent){ KeyPressEvent event = (KeyPressEvent) e; for (IUpdatableComponent comp : updatables) { comp.testKeyPress(event.getKey()); } } }
81828384858687
575859606162636465666768