/* * Kouretes Statechart Editor-KSE developed * by Angeliki Topalidou-Kyniazopoulou * for Kouretes Team. Code developed by Nikolaos Spanoudakis, Alex Parashos, * ibm, apache and eclipse is used. */ package statechart.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 StateChartCreationWizard extends Wizard implements INewWizard { /** * @generated */ private IWorkbench workbench; /** * @generated */ protected IStructuredSelection selection; /** * @generated */ protected StateChartCreationWizardPage diagramModelFilePage; /** * @generated */ protected StateChartCreationWizardPage 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.StateChartCreationWizardTitle); setDefaultPageImageDescriptor(StateChartDiagramEditorPlugin .getBundledImageDescriptor("icons/wizban/NewStatechartWizard.gif")); //$NON-NLS-1$ setNeedsProgressMonitor(true); } /** * @generated */ public void addPages() { diagramModelFilePage = new StateChartCreationWizardPage( "DiagramModelFile", getSelection(), "kse"); //$NON-NLS-1$ //$NON-NLS-2$ diagramModelFilePage .setTitle(Messages.StateChartCreationWizard_DiagramModelFilePageTitle); diagramModelFilePage .setDescription(Messages.StateChartCreationWizard_DiagramModelFilePageDescription); addPage(diagramModelFilePage); domainModelFilePage = new StateChartCreationWizardPage( "DomainModelFile", getSelection(), "stct") { //$NON-NLS-1$ //$NON-NLS-2$ public void setVisible(boolean visible) { if (visible) { String fileName = diagramModelFilePage.getFileName(); fileName = fileName.substring(0, fileName.length() - ".kse".length()); //$NON-NLS-1$ setFileName(StateChartDiagramEditorUtil.getUniqueFileName( getContainerFullPath(), fileName, "stct")); //$NON-NLS-1$ } super.setVisible(visible); } }; domainModelFilePage .setTitle(Messages.StateChartCreationWizard_DomainModelFilePageTitle); domainModelFilePage .setDescription(Messages.StateChartCreationWizard_DomainModelFilePageDescription); addPage(domainModelFilePage); } /** * @generated */ public boolean performFinish() { IRunnableWithProgress op = new WorkspaceModifyOperation(null) { protected void execute(IProgressMonitor monitor) throws CoreException, InterruptedException { diagram = StateChartDiagramEditorUtil.createDiagram( diagramModelFilePage.getURI(), domainModelFilePage.getURI(), monitor); if (isOpenNewlyCreatedDiagramEditor() && diagram != null) { try { StateChartDiagramEditorUtil.openDiagram(diagram); } catch (PartInitException e) { ErrorDialog .openError( getContainer().getShell(), Messages.StateChartCreationWizardOpenEditorError, 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.StateChartCreationWizardCreationError, null, ((CoreException) e.getTargetException()).getStatus()); } else { StateChartDiagramEditorPlugin.getInstance().logError( "Error creating diagram", e.getTargetException()); //$NON-NLS-1$ } return false; } return diagram != null; } }