button.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
UIJob uiJob = new UIJob(Messages.ApplicationMasterPart_JOB_REMOVE_ROUTE) {
public IStatus runInUIThread(IProgressMonitor monitor) {
CloudRoutesWizard wizard = new CloudRoutesWizard(cloudServer);
WizardDialog dialog = new WizardDialog(editorPage.getEditorSite().getShell(), wizard);
dialog.open();
return Status.OK_STATUS;
}