package org.eclipse.uml2.diagram.timing.part; import java.lang.reflect.InvocationTargetException; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.emf.ecore.resource.Resource; import org.eclipse.jface.dialogs.ErrorDialog; import org.eclipse.jface.operation.IRunnableWithProgress; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.wizard.Wizard; import org.eclipse.ui.INewWizard; import org.eclipse.ui.IWorkbench; import org.eclipse.ui.PartInitException; import org.eclipse.ui.actions.WorkspaceModifyOperation; /** * @generated */ public class TimingDCreationWizard extends Wizard implements INewWizard { /** * @generated */ private IWorkbench workbench; /** * @generated */ protected IStructuredSelection selection; /** * @generated */ protected TimingDCreationWizardPage diagramModelFilePage; /** * @diff-files-specific * @generated NOT */ protected TimingDCreationWizardPage domainModelFilePage; /** * @generated */ protected Resource diagram; /** * @generated */ private boolean openNewlyCreatedDiagramEditor = true; /** * @generated */ public IWorkbench getWorkbench() { return workbench; } /** * @generated */ public IStructuredSelection getSelection() { return selection; } /** * @generated */ public final Resource getDiagram() { return diagram; } /** * @generated */ public final boolean isOpenNewlyCreatedDiagramEditor() { return openNewlyCreatedDiagramEditor; } /** * @generated */ public void setOpenNewlyCreatedDiagramEditor(boolean openNewlyCreatedDiagramEditor) { this.openNewlyCreatedDiagramEditor = openNewlyCreatedDiagramEditor; } /** * @generated */ public void init(IWorkbench workbench, IStructuredSelection selection) { this.workbench = workbench; this.selection = selection; setWindowTitle(Messages.TimingDCreationWizardTitle); setDefaultPageImageDescriptor(TimingDDiagramEditorPlugin.getBundledImageDescriptor("icons/wizban/NewTimingDWizard.gif")); //$NON-NLS-1$ setNeedsProgressMonitor(true); } /** * @diff-files-specific * @generated NOT */ public void addPages() { diagramModelFilePage = new TimingDCreationWizardPage("DiagramModelFile", getSelection(), "uml_time"); //$NON-NLS-1$ //$NON-NLS-2$ diagramModelFilePage.setTitle(Messages.TimingDCreationWizard_DiagramModelFilePageTitle); diagramModelFilePage.setDescription(Messages.TimingDCreationWizard_DiagramModelFilePageDescription); addPage(diagramModelFilePage); domainModelFilePage = new TimingDCreationWizardPage("DomainModelFile", getSelection(), "uml"); //$NON-NLS-1$ //$NON-NLS-2$ domainModelFilePage.setTitle(Messages.TimingDCreationWizard_DomainModelFilePageTitle); domainModelFilePage.setDescription(Messages.TimingDCreationWizard_DomainModelFilePageDescription); addPage(domainModelFilePage); } /** * @diff-files-specific * @generated NOT */ public boolean performFinish() { IRunnableWithProgress op = new WorkspaceModifyOperation(null) { protected void execute(IProgressMonitor monitor) throws CoreException, InterruptedException { diagram = TimingDDiagramEditorUtil.createDiagram(diagramModelFilePage.getURI(), domainModelFilePage.getURI(), monitor); if (isOpenNewlyCreatedDiagramEditor() && diagram != null) { try { TimingDDiagramEditorUtil.openDiagram(diagram); } catch (PartInitException e) { ErrorDialog.openError(getContainer().getShell(), Messages.TimingDCreationWizardOpenEditorError, null, e.getStatus()); } } } }; try { getContainer().run(false, true, op); } catch (InterruptedException e) { return false; } catch (InvocationTargetException e) { if (e.getTargetException() instanceof CoreException) { ErrorDialog.openError(getContainer().getShell(), Messages.TimingDCreationWizardCreationError, null, ((CoreException) e.getTargetException()).getStatus()); } else { TimingDDiagramEditorPlugin.getInstance().logError("Error creating diagram", e.getTargetException()); //$NON-NLS-1$ } return false; } return diagram != null; } }