// Build toolbar
PeakListTableToolBar toolBar = new PeakListTableToolBar(this);
add(toolBar, BorderLayout.EAST);
// Build table
table = new PeakListTable(this, parameters, peakList);
scrollPane = new JScrollPane(table);
add(scrollPane, BorderLayout.CENTER);