1 package tableViewExamples;
3 import fi.jyu.mit.fxgui.StringGrid;
4 import javafx.application.Application;
5 import javafx.scene.Scene;
6 import javafx.scene.layout.StackPane;
7 import javafx.stage.Stage;
23 public static void main(String[] args) {
29 public void start(Stage primaryStage) {
30 StackPane root =
new StackPane();
32 "ala|aloitusvuosi|h/vko\n"+
34 "laiskottelu|1950|20\n"+
35 "työn pakoilu|1952|40";
38 StringGrid<?> tableTiedot =
new StringGrid<>();
40 tableTiedot.setEditable(
true);
41 tableTiedot.setRivit(tiedot);
42 tableTiedot.setRivit(tiedot);
44 root.getChildren().add(tableTiedot);
45 primaryStage.setScene(
new Scene(root, 300, 250));