![]() |
BakeoutController
0.1
A Controller for the Omicron vacuum chamber
|
Public Member Functions | |
| void | setPrimaryStage (Stage primaryStage) |
| void | showScreen (Parent screen) |
| FXMLLoader | fxmlLoader () |
| DevicesController | devicesController () |
| SequenceController | sequenceController () |
| NewDeviceController | newDeviceController () |
| NewStepController | newStepController () |
| FXMLStage | application () |
Contains the configuration for the User Interface. This is a structure of beans that are used to load the user interface. Construction details are specified in this configuration
IntelliJ will claim that some methods, especially the beans, are unused. This is false. These methods need to exist because Spring will run all the methods annotated with Bean, and add their return values to its inversion of control container. Calls to org.springframework.context.ApplicationContext#getBean(Class) will then use these instantiated objects. Such a call is also implicitly present in any field annotated with org.springframework.beans.factory.annotation.Autowired. In short, be sure that methods can be deleted from here before you do so. Your IDE may spread lies
Definition at line 30 of file UserInterfaceConfiguration.java.
| FXMLStage ui.UserInterfaceConfiguration.application | ( | ) |
Definition at line 90 of file UserInterfaceConfiguration.java.
| FXMLLoader ui.UserInterfaceConfiguration.fxmlLoader | ( | ) |
Definition at line 57 of file UserInterfaceConfiguration.java.
| void ui.UserInterfaceConfiguration.setPrimaryStage | ( | Stage | primaryStage | ) |
| primaryStage | The stage to use as the primary stage |
Definition at line 39 of file UserInterfaceConfiguration.java.
| void ui.UserInterfaceConfiguration.showScreen | ( | Parent | screen | ) |
Show a particular modal dialog
| screen | The screen to show |
Definition at line 47 of file UserInterfaceConfiguration.java.
| Git Repo |