.createTitledBorder("Batch Parameters"));
add(northPanel, BorderLayout.NORTH);
// Add create batch button
JButton createBatchButton = new JButton("Create Batch");
Action createBatchAction = new CreateBatchAction();
ActionManager actionManager = ActionManager.getInstance();
actionManager.addAction(createBatchAction);
createBatchButton.setAction(createBatchAction);
createBatchButton.setPreferredSize(new Dimension(140, 25));
JPanel buttonPanel = new JPanel();