import javafx.application.Application; import javafx.stage.Stage; public class ApplicationTemplate extends Application { // Called automatically to start the application (you must write this) public void start(Stage primaryStage) { } public static void main(String[] args) { launch(args); // Get everything going (call this exactly once) } }