Project

General

Profile

Download (936 Bytes) 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.editor.handler.create;
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.wizard.WizardDialog;
17
import org.eclipse.swt.widgets.Shell;
18

    
19
import eu.etaxonomy.taxeditor.newWizard.NewReferenceWizard;
20

    
21
/**
22
 *
23
 * @author pplitzner
24
 * @date 10.10.2017
25
 *
26
 */
27
public class NewReferenceHandler {
28

    
29
    @Execute
30
	public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
31
		NewReferenceWizard wizard = new NewReferenceWizard();
32
		wizard.init(null, null);
33
		WizardDialog dialog = new WizardDialog(shell, wizard);
34
		dialog.open();
35
	}
36
}
(3-3/4)