/**
* Encapsulates button Tool Bar.
*/
public class ButtonToolBar extends JPanel {
public ButtonToolBar(FileListPanel leftPanel, FileListPanel rightPanel) {
Resourses resources = new Resourses();
Font font = resources.getDefaultFont();
// 'Send' button.
JButton sendButton = new JButton("Send");
sendButton.setActionCommand(sendButton.getText());
SendController sendController = new SendController();
sendController.setPanels(new FileListPanel[]{leftPanel, rightPanel});