JPanel buttonPanel = new JPanel();
buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.X_AXIS));
southPanel.add(buttonPanel);
JButton addRow = new JPokemonButton("Add Row");
addRow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
onSelectAddRow();
}
});
buttonPanel.add(addRow);