Project

General

Profile

Download (2.31 KB) 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.name.e4.handler;
11

    
12
import javax.inject.Named;
13

    
14
import org.eclipse.e4.core.di.annotations.CanExecute;
15
import org.eclipse.e4.core.di.annotations.Execute;
16
import org.eclipse.e4.ui.di.UISynchronize;
17
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
18
import org.eclipse.e4.ui.model.application.ui.menu.MHandledMenuItem;
19
import org.eclipse.e4.ui.services.IServiceConstants;
20
import org.eclipse.jface.viewers.IStructuredSelection;
21

    
22
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
23
import eu.etaxonomy.taxeditor.editor.name.e4.TaxonNameEditorE4;
24
import eu.etaxonomy.taxeditor.editor.name.handler.NameEditorMenuPropertyTester;
25
import eu.etaxonomy.taxeditor.editor.name.operation.ChangeHomotypicalGroupBasionymOperation;
26
import eu.etaxonomy.taxeditor.model.AbstractUtility;
27
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
28

    
29
/**
30
 *
31
 * @author pplitzner
32
 * @since Aug 28, 2017
33
 *
34
 */
35
public class SetBasionymHandlerE4 {
36

    
37
    @Execute
38
    public void execute(@Named(IServiceConstants.ACTIVE_PART)MPart activePart,
39
            @Named(IServiceConstants.ACTIVE_SELECTION)IStructuredSelection selection,
40
            MHandledMenuItem menuItem,
41
            UISynchronize sync) {
42

    
43
        TaxonNameEditorE4 editor = (TaxonNameEditorE4) activePart.getObject();
44

    
45
		TaxonBase selectedTaxonBase = (TaxonBase) selection.getFirstElement();
46

    
47
		AbstractPostOperation operation;
48

    
49
		operation = new ChangeHomotypicalGroupBasionymOperation(menuItem.getLocalizedLabel(), editor.getUndoContext(),
50
        					editor.getTaxon(), selectedTaxonBase, editor);
51
        AbstractUtility.executeOperation(operation, sync);
52
	}
53

    
54
    @CanExecute
55
    public boolean canExecute(@Named(IServiceConstants.ACTIVE_SELECTION)IStructuredSelection selection,
56
            MHandledMenuItem menuItem){
57
        boolean canExecute = false;
58
        Object selectedElement = selection.getFirstElement();
59
        canExecute =
60
                NameEditorMenuPropertyTester.isSynonymInHomotypicalGroupWithMoreSynonyms(selectedElement);
61
        menuItem.setVisible(canExecute);
62
        return canExecute;
63
    }
64
}
(11-11/12)