//table.setPreferredScrollableViewportSize(new Dimension(500, 100));
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
//Ajout des listeners
table.getSelectionModel().addListSelectionListener(this);
table.getColumnModel().getSelectionModel().addListSelectionListener(this);
table.setDefaultRenderer(Object.class, new TableCellRenderer());
table.setDefaultRenderer(Representation.class, new TableCellRenderer());
table.setDefaultRenderer(String.class, new TableCellRenderer());
jsp.setPreferredSize(GU.getMainDimension());
this.add(jsp,BorderLayout.NORTH);
//Panel Centre
JPanel panelCentre = new JPanel();