this.rateModel = rateModel;
this.table = new JTable(tableModel);
this.scrollPane = new JScrollPane(table);
this.rightPanel = new JPanel();
//
table.setDefaultRenderer(Color.class, new ColorTableCellRenderer());
table.getColumnModel().getColumn(1).setMaxWidth(50);
table.getColumnModel().getColumn(2).setMaxWidth(50);
//
setBorder(BorderFactory.createEmptyBorder(SPACING, SPACING, SPACING, SPACING));
setLayout(new GridLayout(1, 2, SPACING, SPACING));