}
@Override
protected void executeCommand() throws Exception {
W wizard = createWizard();
WizardDialog wizardDialog = new WizardDialog( wizard );
wizardDialog.setTitle( getMessage( wizard.getId() + ".title" ) );
//noinspection InstanceofIncompatibleInterface
if ( wizard instanceof ApplicationWindowAware ) {
//noinspection CastToIncompatibleInterface
( ( ApplicationWindowAware ) wizard ).setApplicationWindow( getApplicationWindow() );
}
wizardDialog.showDialog();
}