final Box b;
final ModificationButton ggPlus, ggMinus;
final JButton ggAssistent;
final JTable table;
final JPanel p;
final JTableHeader th;
final SortedTableModel stm;
audioBoxesFromPrefs();
p = new JPanel( new BorderLayout() );
abtm = new AudioBoxTableModel();
stm = new SortedTableModel( abtm );
table = new JTable( stm );
th = table.getTableHeader();
stm.setTableHeader( th );
th.setReorderingAllowed( false );
th.setResizingAllowed( true );
// table.setAutoResizeMode( JTable.AUTO_RESIZE_OFF );
table.setCellSelectionEnabled( true );
table.setColumnSelectionAllowed( false );
table.setShowGrid( true );
table.setGridColor( Color.lightGray );