table.setAutoCreateRowSorter(true);
table.addMouseListener(this);
table.addKeyListener(this);
JScrollPane scrollPane = new JScrollPane(table);
scrollPane.addComponentListener(new
CorrectStrangeBehaviourListener(table, scrollPane));
//Add the scroll pane to this panel.
this.setLayout(new BorderLayout());
add(scrollPane);