final JPanel panel = new Panel(new BorderLayout());
final JLabel label = new Label(task.getText());
panel.add(label, BorderLayout.NORTH);
final JProgressBar pb = new ProgressBar();
pb.setIndeterminate(true);
panel.add(pb, BorderLayout.CENTER);
final JButton button = new Button(localizer.getValue(HelperResource.RES_LABEL_CANCEL_TASK), view.getController()
.getScaledIcon(Icon.CANCEL), localizer.getTooltip(HelperResource.RES_LABEL_CANCEL_TASK));
button.addActionListener(new ActionListener() {