* Processes configuration wizard dialog.
* @param project the project.
* @return the return code of the dialog.
*/
public static int processConfigWizardDialog(IProject project) {
INewWizard wizard = new ReviewIdNewWizard(project);
wizard.init(workbench, null);
// Instantiates the wizard container with the wizard and opens it
IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
WizardDialog dialog = new WizardDialog(window.getShell(), wizard);
dialog.create();
return dialog.open();