package bluej.extensions.event;
| This interface allows you to listen for application events.
|
public interface ApplicationListener
{
| 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.
|
public void blueJReady(ApplicationEvent event);
| This method will be called when submission to the current data recording server
| (Blackbox, or your local purpose-run recording server) has failed.
|
default public void dataSubmissionFailed(ApplicationEvent event)
{
}
}
top,
use,
map,
interface ApplicationListener
. blueJReady
. dataSubmissionFailed
13 neLoCode
+ 9 LoComm