Upgrade to java 16

This commit is contained in:
Hallvard Trætteberg
2021-08-11 15:12:25 +00:00
parent 0f7ef54ebf
commit c892ebfdec
7 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
package groupid;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
import java.io.IOException;
/**
* JavaFX App
*/
public class App extends Application {
private static Scene scene;
@Override
public void start(Stage stage) throws IOException {
FXMLLoader fxmlLoader = new FXMLLoader(this.getClass().getResource("App.fxml"));
Parent parent = fxmlLoader.load();
stage.setScene(new Scene(parent));
stage.show();
}
public static void main(String[] args) {
launch();
}
}