Import/Timer sleep
This commit is contained in:
@ -22,7 +22,8 @@ public class Table {
|
||||
//Tabelle aktualisieren
|
||||
|
||||
private static final int NUM_COLUMNS = 8; // Anzahl der Spalten
|
||||
private static final double TABLE_WIDTH = 310; // Breite der TableView
|
||||
private static final double TABLE_WIDTH = 400; // Breite der TableView
|
||||
private static final double TABLE_HEIGHT = 650; // Höhe der TableView
|
||||
|
||||
|
||||
|
||||
@ -33,6 +34,7 @@ public class Table {
|
||||
// Erstelle eine TableView für die Datenanzeige
|
||||
TableView<DataEntry[]> tableView = new TableView<>();
|
||||
tableView.setPrefWidth(TABLE_WIDTH);
|
||||
tableView.setPrefHeight(TABLE_HEIGHT);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user