Class MainUIController
java.lang.Object
net.bjmsw.hda.vs.testing.ui.controller.MainUIController
The MainUIController class is responsible for controlling the main user interface of the application.
It contains references to the buttons used for launching different types of tests.
This class initializes the buttons and assigns event handlers to them, which create instances of the corresponding test classes and call their create() methods when clicked.
Note: This class uses JavaFX and assumes that the corresponding FXML file has been properly configured with the FXML controllers.
-
Field Summary
FieldsModifier and TypeFieldDescriptionjavafx.scene.control.Buttonjavafx.scene.control.Buttonjavafx.scene.control.Button -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidInitializes the buttons and assigns event handlers to them.
-
Field Details
-
launchFrontendTestsButton
public javafx.scene.control.Button launchFrontendTestsButton -
launchRpcTestsButton
public javafx.scene.control.Button launchRpcTestsButton -
launchMqttTestButton
public javafx.scene.control.Button launchMqttTestButton
-
-
Constructor Details
-
MainUIController
public MainUIController()
-
-
Method Details
-
initialize
public void initialize()Initializes the buttons and assigns event handlers to them. When a button is clicked, a corresponding test class is created and its create() method is called.
-