/**
* initialize the remove button
*/
private void initRemoveButton() {
// remove button
RemoveSelectionTableAction removeAction = new RemoveSelectionTableAction(mainTable);
removeFileButton.setAction(removeAction);
addButtonToButtonPanel(removeFileButton);
addToMainTableKeyBindings(removeAction);
popupMenu.add(new JMenuItem(removeAction));
}