mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
14 lines
289 B
Plaintext
14 lines
289 B
Plaintext
package ${context.rootPackage};
|
|
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.control.Label;
|
|
|
|
public class HelloController {
|
|
@FXML
|
|
private Label welcomeText;
|
|
|
|
@FXML
|
|
protected void onHelloButtonClick() {
|
|
welcomeText.setText("Welcome to JavaFX Application!");
|
|
}
|
|
} |