}
private void populateList()
{
JDBMHN mhn = new JDBMHN(Common.selectedHostID, Common.sessionID);
JDBMHNTableModel mhntable = new JDBMHNTableModel(mhn.getMHNDataResultSet(listStatement));
TableRowSorter<JDBMHNTableModel> sorter = new TableRowSorter<JDBMHNTableModel>(mhntable);
jTable1.setRowSorter(sorter);
jTable1.setModel(mhntable);
jScrollPane1.setViewportView(jTable1);
JUtility.scrolltoHomePosition(jScrollPane1);
jTable1.getTableHeader().setReorderingAllowed(false);
jTable1.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
jTable1.setFont(Common.font_list);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.MHN_Number_Col).setPreferredWidth(80);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.recorder_Col).setPreferredWidth(80);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.initiator_Col).setPreferredWidth(80);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.reason1_Col).setPreferredWidth(60);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.reason2_Col).setPreferredWidth(60);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.reason3_Col).setPreferredWidth(60);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.date_created_Col).setPreferredWidth(120);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.date_expected_Col).setPreferredWidth(120);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.date_resolved_Col).setPreferredWidth(120);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.status_Col).setPreferredWidth(50);
jTable1.getColumnModel().getColumn(JDBMHNTableModel.comment_Col).setPreferredWidth(400);
jScrollPane1.repaint();
JUtility.setResultRecordCountColour(jStatusText, false, 0, mhntable.getRowCount());
}