Project

General

Profile

Download (1.01 KB) Statistics
| Branch: | Tag: | Revision:
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.out;
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 AbstractOpenExportWizard {
23

    
24
    @Execute
25
    public void execute(IEclipseContext ctx, Shell s)
26
    {
27
        AbstractExportWizardE4 wizard = ContextInjectionFactory.make(getExportWizardClass(), ctx);
28
        wizard.init();
29
        WizardDialog dialog = new WizardDialog(s, wizard);
30
        dialog.open();
31
    }
32

    
33
    protected abstract Class<? extends AbstractExportWizardE4> getExportWizardClass();
34

    
35
}
(2-2/2)