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