All Classes Namespaces Files Functions Variables
StringGridViewController.java
Go to the documentation of this file.
1 package stringGridViewFXML;
2 
3 import java.net.URL;
4 import java.util.ResourceBundle;
5 
6 import javafx.application.Application;
7 import javafx.fxml.FXMLLoader;
8 import javafx.fxml.Initializable;
9 import javafx.scene.Scene;
10 import javafx.scene.layout.Pane;
11 import javafx.stage.Stage;
12 
13 /**
14  * Esimerkki 2-ulotteisen merkkijonotaulukon näyttämisestä
15  * JavaFX:n TableViewssä aliohjelman avulla.
16  * Tiedostomäärän vähentämiseksi normaalit pääohjelman jutut
17  * on kirjoitettu tähän samaan luokkaan.
18  * Muokkaukset eivät tässä esimerkissä muuta itse taulukkoa.
19  * @author vesal
20  * @version 24.12.2015
21  *
22  */
23 public class StringGridViewController extends Application implements Initializable {
24 
25  @Override
26  public void initialize(URL url, ResourceBundle bundle) {
27  //
28  }
29 
30 
31  // Normaalit pääohjelmien jutut:
32 
33  @Override
34  public void start(Stage primaryStage) {
35  try {
36  Pane root = (Pane)FXMLLoader.load(getClass().getResource("StringGridView.fxml"));
37  Scene scene = new Scene(root,400,400);
38  primaryStage.setScene(scene);
39  primaryStage.show();
40  } catch(Exception e) {
41  e.printStackTrace();
42  }
43  }
44 
45 
46  /**
47  * Käynnistetään esimerkkiohjelma
48  * @param args ei käytössä
49  */
50  public static void main(String[] args) {
51  launch(args);
52  }
53 }
54 
55 
56 
57