// Update the border of the output panel
outputPanel.setBorder(BorderFactory.createCompoundBorder(BorderFactory
.createTitledBorder(" Output "),
BorderFactory.createEmptyBorder(5, 5, 5, 5)));
outputTableModel = new OutputTableModel();
mOutputTable = new OutputTable(outputTableModel);
outputSorter = new TableRowSorter<OutputTableModel>(outputTableModel);
mOutputTable.setRowSorter(outputSorter);
RightClickPopups.rightClickOutputTable(this, mOutputTable);