Project

General

Profile

Download (1.14 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.core.di.annotations.Optional;
16
import org.eclipse.e4.ui.services.IServiceConstants;
17
import org.eclipse.jface.viewers.ITreeSelection;
18
import org.eclipse.jface.wizard.WizardDialog;
19
import org.eclipse.swt.widgets.Shell;
20

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

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

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