WizardBean wizBean = new WizardBean();
wizBean.setPage1bean(wizardPane1.getBean());
wizBean.setPage2bean(wizardPane2.getBean());
wizBean.setPage3bean(wizardPane4.getBean());
try {
new Controller().process(wizBean);
showSuccessMessage(" jar file creation successful! ");
return true;
} catch (ProcessException e) {
showErrorMessage(e.getMessage());
return false;