Project

General

Profile

Download (1.5 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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.preference.PreferencesUtil;
21
import eu.etaxonomy.taxeditor.preference.wizard.AvailableVocabularyWizard;
22

    
23
/**
24
 * @author k.luther
25
 * @since 08.10.2018
26
 *
27
 */
28
public class OpenCommonNameAreaWizardAdminHandler {
29
    String commandID = "eu.etaxonomy.taxeditor.handler.e4.OpenCommonNameAreaWizardAdminHandler";
30

    
31
    @Execute
32
    public void execute(@Named(IServiceConstants.ACTIVE_SHELL)Shell shell) {
33
        CdmPreference pref = PreferencesUtil.getPreferenceFromDB(PreferencePredicate.CommonNameAreaVocabularies);
34
        if (pref == null){
35
            pref = CdmPreference.NewTaxEditorInstance(PreferencePredicate.CommonNameAreaVocabularies, null);
36
        }
37
        AvailableVocabularyWizard wizard = new AvailableVocabularyWizard(false, pref, "Common Names");
38

    
39
        WizardDialog dialog = new WizardDialog(shell,
40
                wizard);
41

    
42
        dialog.open();
43
    }
44
}
(1-1/9)