mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 122ff5370e645d129f777f4319cbe32780675f57
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!");
|
|
}
|
|
} |