Project

General

Profile

Download (2.2 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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.navigation.navigator.e4.handler;
10

    
11
import javax.inject.Named;
12

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

    
21
import eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode;
22
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
23
import eu.etaxonomy.taxeditor.model.AbstractUtility;
24
import eu.etaxonomy.taxeditor.navigation.navigator.e4.TaxonNavigatorE4;
25
import eu.etaxonomy.taxeditor.navigation.navigator.operation.CopyOperation;
26
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
27
import eu.etaxonomy.taxeditor.store.StoreUtil;
28

    
29
/**
30
 *
31
 * @author pplitzner
32
 * @date 05.09.2017
33
 *
34
 */
35
public class CopyHandlerE4 {
36

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

    
42
        TaxonNavigatorE4 taxonNavigator = (TaxonNavigatorE4) activePart.getObject();
43

    
44
		if(selection.size() == 1) {
45
			Object selectedObject = selection.getFirstElement();
46
			if (selectedObject instanceof TaxonNode) {
47
				AbstractPostOperation operation = new CopyOperation(menuItem.getLocalizedLabel(), StoreUtil.getUndoContext(),
48
                (TaxonNode)selectedObject, taxonNavigator);
49
                IStatus status = AbstractUtility.executeOperation(operation);
50
			}
51
		}
52
	}
53

    
54
    @CanExecute
55
    private boolean canExecute(@Named(IServiceConstants.ACTIVE_SELECTION)TreeSelection selection, MHandledMenuItem menuItem){
56
        boolean canExecute = false;
57
        menuItem.setVisible(canExecute);
58
        canExecute = selection.getFirstElement() instanceof ITaxonTreeNode;
59
        return canExecute;
60
    }
61

    
62
}
(3-3/11)