/* * Copyright (c) 2010 National Aeronautics and Space Administration. All rights reserved. */ package net.certware.argument.euz.diagram.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 EuzCreationWizard extends Wizard implements INewWizard { /** * @generated */ private IWorkbench workbench; /** * @generated */ protected IStructuredSelection selection; /** * @generated */ protected EuzCreationWizardPage diagramModelFilePage; /** * @generated */ protected EuzCreationWizardPage 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.EuzCreationWizardTitle); setDefaultPageImageDescriptor(EuzDiagramEditorPlugin .getBundledImageDescriptor("icons/wizban/NewEuzWizard.gif")); //$NON-NLS-1$ setNeedsProgressMonitor(true); } /** * @generated */ public void addPages() { diagramModelFilePage = new EuzCreationWizardPage( "DiagramModelFile", getSelection(), "euz_diagram"); //$NON-NLS-1$ //$NON-NLS-2$ diagramModelFilePage .setTitle(Messages.EuzCreationWizard_DiagramModelFilePageTitle); diagramModelFilePage .setDescription(Messages.EuzCreationWizard_DiagramModelFilePageDescription); addPage(diagramModelFilePage); domainModelFilePage = new EuzCreationWizardPage( "DomainModelFile", getSelection(), "euz") { //$NON-NLS-1$ //$NON-NLS-2$ public void setVisible(boolean visible) { if (visible) { String fileName = diagramModelFilePage.getFileName(); fileName = fileName.substring(0, fileName.length() - ".euz_diagram".length()); //$NON-NLS-1$ setFileName(EuzDiagramEditorUtil.getUniqueFileName( getContainerFullPath(), fileName, "euz")); //$NON-NLS-1$ } super.setVisible(visible); } }; domainModelFilePage .setTitle(Messages.EuzCreationWizard_DomainModelFilePageTitle); domainModelFilePage .setDescription(Messages.EuzCreationWizard_DomainModelFilePageDescription); addPage(domainModelFilePage); } /** * @generated */ public boolean performFinish() { IRunnableWithProgress op = new WorkspaceModifyOperation(null) { protected void execute(IProgressMonitor monitor) throws CoreException, InterruptedException { diagram = EuzDiagramEditorUtil.createDiagram( diagramModelFilePage.getURI(), domainModelFilePage.getURI(), monitor); if (isOpenNewlyCreatedDiagramEditor() && diagram != null) { try { EuzDiagramEditorUtil.openDiagram(diagram); } catch (PartInitException e) { ErrorDialog.openError(getContainer().getShell(), Messages.EuzCreationWizardOpenEditorError, 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.EuzCreationWizardCreationError, null, ((CoreException) e.getTargetException()).getStatus()); } else { EuzDiagramEditorPlugin.getInstance().logError( "Error creating diagram", e.getTargetException()); //$NON-NLS-1$ } return false; } return diagram != null; } }