Project

General

Profile

Download (1.08 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.taxeditor.navigation.navigator.e4.handler;
11

    
12
import javax.inject.Named;
13

    
14
import org.eclipse.e4.core.di.annotations.Execute;
15
import org.eclipse.e4.ui.services.IServiceConstants;
16
import org.eclipse.jface.viewers.ITreeSelection;
17
import org.eclipse.jface.wizard.WizardDialog;
18
import org.eclipse.swt.widgets.Shell;
19

    
20
import eu.etaxonomy.taxeditor.newWizard.NewClassificationWizard;
21

    
22
/**
23
 *
24
 * @author pplitzner
25
 * @date 05.09.2017
26
 *
27
 */
28
public class NewClassificationHandlerE4 {
29

    
30
    @Execute
31
    public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell,
32
            @Named(IServiceConstants.ACTIVE_SELECTION)ITreeSelection selection) {
33
		NewClassificationWizard wizard = new NewClassificationWizard();
34
		wizard.init(null, selection);
35
		WizardDialog dialog = new WizardDialog(shell, wizard);
36
		dialog.open();
37
	}
38
}
(9-9/17)