// Set the layout
this.setLayout(new BorderLayout());
// Construct the table model
resultsTableModel = new ResultsTableModel();
// Construct the table and configure it
resultsTable = new JTable(resultsTableModel);
resultsTable.setAutoCreateRowSorter(true);
resultsTable.setFillsViewportHeight(true);