All Classes Namespaces Files Functions Variables
HelloWorldMain.java
Go to the documentation of this file.
1 package hello.simple;
2 import javafx.application.Application;
3 import javafx.fxml.FXMLLoader;
4 import javafx.scene.Scene;
5 import javafx.scene.layout.Pane;
6 import javafx.stage.Stage;
7 
8 /**
9  * Yksinkertainen esimerkki JavaFX ohjelmasta joka hakee ulkoasun FXML-tiedostosta
10  * @author vesal
11  * @version 4.3.2016
12  */
13 public class HelloWorldMain extends Application {
14  @Override
15  public void start(Stage primaryStage) {
16  try {
17  Pane root = FXMLLoader.load(getClass().getResource("HelloWorldView.fxml"));
18  Scene scene = new Scene(root);
19  primaryStage.setScene(scene);
20  primaryStage.show();
21  } catch(Exception e) {
22  e.printStackTrace();
23  }
24  }
25 
26 
27  /** @param args ei käytössä */
28  public static void main(String[] args) {
29  launch(args);
30  }
31 }