All Classes Namespaces Files Functions Variables
HelloWorld2.java
Go to the documentation of this file.
1 package hello.simple;
2 import javafx.application.Application;
3 import javafx.scene.Scene;
4 import javafx.scene.control.Label;
5 import javafx.scene.layout.BorderPane;
6 import javafx.stage.Stage;
7 
8 /**
9  * Yksinkertainen esimerkki JavaFX ohjelmasta, lyhenettynä.
10  * @author vesal
11  * @version 4.3.2016
12  */
13 public class HelloWorld2 extends Application {
14  @Override
15  public void start(Stage primaryStage) {
16  BorderPane root = new BorderPane();
17  root.setCenter(new Label("Hello World!"));
18  primaryStage.setScene(new Scene(root));
19  primaryStage.show();
20  }
21 
22 
23  /** @param args ei käytössä */
24  public static void main(String[] args) {
25  launch(args);
26  }
27 }