java.lang.Object
app.supernaut.fx.test.NoopAppDelegate
- All Implemented Interfaces:
ApplicationDelegate
No-op ApplicationDelegate which exits immediately (used for testing)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
start
(javafx.stage.Stage primaryStage) The main entry point for Supernaut.fx applications.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface app.supernaut.fx.ApplicationDelegate
init, setApplication, stop
-
Constructor Details
-
NoopAppDelegate
public NoopAppDelegate()
-
-
Method Details
-
start
Description copied from interface:ApplicationDelegate
The main entry point for Supernaut.fx applications. Called fromApplication.start(Stage)
. At a minimum, you must implement this method.NOTE: This method is called on the JavaFX Application Thread.
- Specified by:
start
in interfaceApplicationDelegate
- Parameters:
primaryStage
- the primary stage
-