// COLET 13/01/2009 : Pseudo Double Click using Enter Key will not work if the table component has focus. Lets register the Action on the Table too.
this.table.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0), PsuedoDoubleClickAction.PSUED0_DOUBLE_CLICK);
this.table.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, KeyEvent.SHIFT_MASK),PsuedoDoubleClickAction.PSUED0_DOUBLE_CLICK);
this.table.getActionMap().put(PsuedoDoubleClickAction.PSUED0_DOUBLE_CLICK, new PsuedoDoubleClickAction());
this.list.setSelectionModel(this.table.getSelectionModel());
this.tableModel = new ListViewTableModel(this);
this.setTableModel(this.tableModel);
this.setName(name);
if (headerFontStyle != Font.PLAIN) {