// {0} will be replaced by WizardDesriptor.Panel.getComponent().getName()
wizard.setTitleFormat(new MessageFormat("{0}"));
wizard.setTitle((String) getValue(Action.NAME));
Dialog dialog = DialogDisplayer.getDefault().createDialog(wizard);
dialog.setVisible(true);
dialog.toFront();
boolean cancelled = wizard.getValue() != WizardDescriptor.FINISH_OPTION;
if (!cancelled) {
if (builder.isValid())
builder.build();
}