}
}
}
// Instantiates and initializes the wizard
NewObjectClassWizard wizard = new NewObjectClassWizard();
wizard.init( PlatformUI.getWorkbench(), StructuredSelection.EMPTY );
wizard.setSelectedSchema( selectedSchema );
// Instantiates the wizard container with the wizard and opens it
WizardDialog dialog = new WizardDialog( PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), wizard );
dialog.create();
dialog.open();
}