ref #7920: add handlers and wizards for area specific status preference selection
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / handler / e4 / OpenCommonNameAreaWizardHandler.java
1 /**
2 * Copyright (C) 2019 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.handler.e4;
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.cdm.model.metadata.CdmPreference;
19 import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
20 import eu.etaxonomy.taxeditor.l10n.Messages;
21 import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
22 import eu.etaxonomy.taxeditor.preference.wizard.AvailableVocabularyWizard;
23
24 /**
25 * @author k.luther
26 * @since 22.01.2019
27 *
28 */
29 public class OpenCommonNameAreaWizardHandler {
30 String commandID = "eu.etaxonomy.taxeditor.handler.e4.OpenCommonNameAreaWizardHandler"; //$NON-NLS-1$
31
32 @Execute
33 public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
34 CdmPreference pref = PreferencesUtil.getPreferenceFromDB(PreferencePredicate.CommonNameAreaVocabularies);
35 if (pref == null){
36 pref = CdmPreference.NewTaxEditorInstance(PreferencePredicate.CommonNameAreaVocabularies, null);
37 }
38 AvailableVocabularyWizard wizard = new AvailableVocabularyWizard(true, pref, Messages.OpenCommonNameAreaWizardAdminHandler_COMMON_NAMES);
39
40 WizardDialog dialog = new WizardDialog(shell,
41 wizard);
42
43 dialog.open();
44 }
45 }