bluej.extensions.event
Interface ApplicationListener


public interface ApplicationListener

This interface allows you to listen for application events.

Version:
$Id: ApplicationListener.java 6215 2009-03-30 13:28:25Z polle $

Method Summary
 void blueJReady(ApplicationEvent event)
          This method will be called when the BlueJ application is initialised.
 

Method Detail

blueJReady

void blueJReady(ApplicationEvent event)
This method will be called when the BlueJ application is initialised. Warning: If you load an extension with a Project you will not get this event since BlueJ has already completed its initialisation when the project is loaded. 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