bluej.extensions.event
Interface ExtensionEventListener
public interface ExtensionEventListener
This interface allows you to listen for all BlueJ events by using a single listener.
Normally, extensions will use the specialised event types and listeners, but
in some cases (e.g.) logging or testing extensions this overarching event type
will be more appropriate.
- Version:
- $Id: ExtensionEventListener.java 6215 2009-03-30 13:28:25Z polle $
eventOccurred
void eventOccurred(ExtensionEvent event)
- This method will be called when an event occurs.
Note that this method is called from a Swing-like dispatcher and therefore you must
return as quickly as possible.
If a long operation must be performed you should start a Thread.
BlueJ homepage