contentPane.add(makeNorthPanel(), BorderLayout.NORTH);
contentPane.add(makeCenterPanel(), BorderLayout.CENTER);
JPanel southpan = new JPanel();
JButton startButton = new JButton("Start Task");
startButton.addActionListener(this);
southpan.add(startButton);
JButton okButton = new JButton("OK");
okButton.addActionListener(this);
southpan.add(okButton);
JButton cancelButton = new JButton("Cancel");
cancelButton.addActionListener(this);
southpan.add(cancelButton);
contentPane.add(southpan, BorderLayout.SOUTH);
pack();