ref #7005 Refactor package structure
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / e4 / in / AbstractOpenImportWizard.java
1 /**
2 * Copyright (C) 2017 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.io.e4.in;
10
11 import org.eclipse.e4.core.contexts.ContextInjectionFactory;
12 import org.eclipse.e4.core.contexts.IEclipseContext;
13 import org.eclipse.e4.core.di.annotations.Execute;
14 import org.eclipse.jface.wizard.WizardDialog;
15 import org.eclipse.swt.widgets.Shell;
16
17 /**
18 * @author pplitzner
19 * @since Oct 5, 2017
20 *
21 */
22 public abstract class AbstractOpenImportWizard {
23 @Execute
24 public void execute(IEclipseContext ctx, Shell s)
25 {
26 AbstractImportWizardE4 wizard = ContextInjectionFactory.make(getImportWizardClass(), ctx);
27 wizard.init();
28 WizardDialog dialog = new WizardDialog(s, wizard);
29 dialog.open();
30 }
31
32 protected abstract Class<? extends AbstractImportWizardE4> getImportWizardClass();
33
34 }