MCPcopy Create free account
hub / github.com/0linlin0/CyberBox / Main

Class Main

Skay_Exp/src/ui/Main.java:14–33  ·  view source on GitHub ↗

@author saban

Source from the content-addressed store, hash-verified

12 * @author saban
13 */
14public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected