Package cl.obcom.desktopfx.core
Class ExtensionBase
java.lang.Object
cl.obcom.desktopfx.core.ExtensionBase
Class used to build DesktopFX Extensions.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
ExtensionBase
public ExtensionBase()Constructs a newExtensionBase
instance.
-
-
Method Details
-
start
Called after DesktopFX has completed the intialization process. This method is a convenient place to create and initialize custom resources.NOTE: This method is called on the JavaFX Application Thread.
- Parameters:
desktop
- the fully initialized DesktopFX instance.- Throws:
NullPointerException
- ifdesktop
isnull
.Exception
- if another error occurs.
-
stop
Called before DesktopFX is about to stop. This method is a convenient place to destroy custom resources and prepare for exit.NOTE: This method is called on the JavaFX Application Thread.
- Throws:
Exception
- if an error occurs.
-