Interface ApplicationListener


  • public interface ApplicationListener
    This interface allows an extension to listen for application events.
    • Method Detail

      • blueJReady

        void blueJReady​(ApplicationEvent event)
        This method will be called when the BlueJ application is initialised. Warning: If the extension is loaded with a Project, it will not get this event since BlueJ has already completed its initialisation when the project is loaded. Note that this method is called from the JavaFX (GUI) thread and therefore the extension must return as quickly as possible. If a long operation must be performed the extension should start a Thread.
        Parameters:
        event - the event of type ApplicationEvent.EventType.APP_READY_EVENT sent over.