@author saban
| 12 | * @author saban |
| 13 | */ |
| 14 | public class Main extends Application { |
| 15 | |
| 16 | @Override |
| 17 | public void start(Stage stage) throws Exception { |
| 18 | System.out.print(this.getClass().getResource("").getPath()); |
| 19 | Parent root = FXMLLoader.load(getClass().getResource("main.fxml")); |
| 20 | |
| 21 | Scene scene = new Scene(root); |
| 22 | |
| 23 | stage.initStyle(StageStyle.UNDECORATED); |
| 24 | |
| 25 | stage.setScene(scene); |
| 26 | stage.show(); |
| 27 | } |
| 28 | |
| 29 | public static void main(String[] args) { |
| 30 | launch(args); |
| 31 | } |
| 32 | |
| 33 | } |
nothing calls this directly
no outgoing calls
no test coverage detected