From a448320cc4661f9304a8323d6c0e05f1f0fee2b3 Mon Sep 17 00:00:00 2001 From: Ben Burwell Date: Sat, 19 Nov 2016 22:55:10 -0500 Subject: Use resources for data (for now) At some point, it would be nice for this to be more configurable --- .../gui/navigationaids/NavigationAidComponent.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main/java/com/benburwell/planes/gui/navigationaids/NavigationAidComponent.java (limited to 'src/main/java/com/benburwell/planes/gui/navigationaids/NavigationAidComponent.java') diff --git a/src/main/java/com/benburwell/planes/gui/navigationaids/NavigationAidComponent.java b/src/main/java/com/benburwell/planes/gui/navigationaids/NavigationAidComponent.java new file mode 100644 index 0000000..1ad7e3e --- /dev/null +++ b/src/main/java/com/benburwell/planes/gui/navigationaids/NavigationAidComponent.java @@ -0,0 +1,28 @@ +package com.benburwell.planes.gui.navigationaids; + +import com.benburwell.planes.data.CSVObjectStore; +import com.benburwell.planes.data.NavigationAid; +import com.benburwell.planes.gui.ViewComponent; + +import javax.swing.*; + +/** + * Created by ben on 11/19/16. + */ +public class NavigationAidComponent implements ViewComponent { + private JTable table; + private NavigationAidsTableModel tableModel; + private JScrollPane scrollPane; + + public NavigationAidComponent(CSVObjectStore store) { + this.tableModel = new NavigationAidsTableModel(store); + this.table = new JTable(this.tableModel); + this.table.setFillsViewportHeight(true); + this.scrollPane = new JScrollPane(table); + } + + @Override + public JComponent getComponent() { + return this.scrollPane; + } +} -- cgit v1.2.3