CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #66

FXML Controller Wiring

mediumJavaFX

What does the @FXML annotation do in a JavaFX controller class?

📄 Code

1public class MyController {
2 @FXML
3 private Label titleLabel;
4 
5 @FXML
6 private Button submitBtn;
7 
8 @FXML
9 private void handleSubmit() {
10 titleLabel.setText("Submitted!");
11 }
12}