ref #7849: harmonize admin and local preferences for distribution editor and use...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / handler / e4 / OpenDistributionEditorWizardHandlerAdminE4.java
1 /**
2 * Copyright (C) 2014 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 *
26 * @author pplitzner
27 * @date 10.10.2017
28 *
29 */
30 public class OpenDistributionEditorWizardHandlerAdminE4 {
31
32 String commandID = "eu.etaxonomy.taxeditor.handler.e4.OpenDistributionEditorWizardHandlerAdminE4"; //$NON-NLS-1$
33
34 @Execute
35 public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
36 CdmPreference pref = PreferencesUtil.getPreferenceFromDB(PreferencePredicate.AvailableDistributionAreaVocabularies);
37 if (pref == null){
38 pref = CdmPreference.NewTaxEditorInstance(PreferencePredicate.AvailableDistributionAreaVocabularies, null);
39 }
40 AvailableVocabularyWizard wizard = new AvailableVocabularyWizard(false, pref, Messages.OpenDistributionEditorWizardHandlerAdminE4_DISTRIBUTION);
41
42 WizardDialog dialog = new WizardDialog(shell,
43 wizard);
44
45 dialog.open();
46 }
47 }