package fxml.groovy; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.stage.Stage; public class GroovyTest extends Application { @Override public void start(Stage stage) throws Exception { stage.setTitle("Groovy Test"); stage.setWidth(800); stage.setHeight(600); Parent root = FXMLLoader.load(getClass().getResource("groovy_test.fxml")); stage.setScene(new Scene(root)); stage.setVisible(true); } public static void main(String[] args) { launch(args); } }