summaryrefslogtreecommitdiff
path: root/src/main/java/com/benburwell/planes/gui/aircrafttable/AircraftTableComponent.java
blob: 2bd6586308b61b53b422dc6f84778b700018bdfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.benburwell.planes.gui.aircrafttable;

import com.benburwell.planes.data.AircraftStore;
import com.benburwell.planes.gui.Tabbable;

import javax.swing.*;

/**
 * Created by ben on 11/17/16.
 */
public class AircraftTableComponent implements Tabbable {
    private JTable table;
    private AircraftTableModel tableModel;
    private JScrollPane scrollPane;

    public AircraftTableComponent(AircraftStore store) {
        this.tableModel = new AircraftTableModel(store);
        this.table = new JTable(this.tableModel);
        this.table.setFillsViewportHeight(true);
        this.scrollPane = new JScrollPane(table);
    }

    @Override
    public JComponent getComponent() {
        return this.scrollPane;
    }

    @Override
    public String getName() {
        return "Aircraft";
    }
}