Fix and complete JavaDoc comments

This commit is contained in:
MatteoPellegrino05
2026-05-06 16:59:18 +02:00
parent b40ed99bc1
commit 51718699a3
35 changed files with 390 additions and 54 deletions
@@ -7,7 +7,17 @@ import javafx.stage.Stage;
import java.io.IOException;
/**
* JavaFX application entry point used to start the graphical interface.
*/
public class HelloApplication extends Application {
/**
* Starts the JavaFX application and loads the initial FXML view.
*
* @param stage the primary stage of the application.
* @throws IOException if the FXML file cannot be loaded.
*/
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("hello-view.fxml"));