Merge branch 'release/5.21.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / create / NewNameHandler.java
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 package eu.etaxonomy.taxeditor.editor.handler.create;
10
11 import javax.inject.Named;
12
13 import org.eclipse.e4.core.di.annotations.Execute;
14 import org.eclipse.e4.ui.services.IServiceConstants;
15 import org.eclipse.jface.wizard.WizardDialog;
16 import org.eclipse.swt.widgets.Shell;
17
18 import eu.etaxonomy.taxeditor.newWizard.NewNonViralNameWizard;
19
20 /**
21 * @author pplitzner
22 * @date 10.10.2017
23 */
24 public class NewNameHandler {
25
26 @Execute
27 public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
28 NewNonViralNameWizard wizard = new NewNonViralNameWizard();
29 wizard.init(null, null);
30 WizardDialog dialog = new WizardDialog(shell, wizard);
31 dialog.open();
32 }
33 }