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
@@ -3,10 +3,16 @@ package it.polimi.ingsw.gc14;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
/**
* Controller for the initial JavaFX view.
*/
public class HelloController {
@FXML
private Label welcomeText;
/**
* Handles the click on the hello button.
*/
@FXML
protected void onHelloButtonClick() {
welcomeText.setText("Welcome to JavaFX Application!");