21 lines
401 B
Java
21 lines
401 B
Java
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!");
|
|
}
|
|
}
|