aboutsummaryrefslogtreecommitdiff
path: root/src/com.example.portfolio2/com/example/portfolio2/HelloController.java
blob: b2abf231276873a3a345ee3dc57e34ce990d8a68 (plain)
  1. package com.example.portfolio2;
  2. import javafx.fxml.FXML;
  3. import javafx.scene.control.Label;
  4. public class HelloController {
  5. @FXML
  6. private Label welcomeText;
  7. @FXML
  8. protected void onHelloButtonClick() {
  9. welcomeText.setText("Welcome to JavaFX Application!");
  10. }
  11. }