Project

General

Profile

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

    
11
import javax.inject.Named;
12

    
13
import org.eclipse.e4.core.di.annotations.CanExecute;
14
import org.eclipse.e4.core.di.annotations.Execute;
15
import org.eclipse.e4.core.di.annotations.Optional;
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.IStructuredSelection;
20

    
21
import eu.etaxonomy.cdm.api.service.IFeatureNodeService;
22
import eu.etaxonomy.cdm.api.service.config.FeatureNodeDeletionConfigurator;
23
import eu.etaxonomy.cdm.model.description.FeatureNode;
24
import eu.etaxonomy.taxeditor.store.CdmStore;
25
import eu.etaxonomy.taxeditor.workbench.part.IE4ViewerPart;
26

    
27
/**
28
 * @author pplitzner
29
 * @since Jul 12, 2017
30
 *
31
 */
32
public class RemoveFeatureHandler {
33

    
34
    @Execute
35
    public void execute(@Named(IServiceConstants.ACTIVE_PART)MPart thisPart,
36
            @Named(IServiceConstants.ACTIVE_SELECTION)IStructuredSelection selection){
37
        for (Object selectedObject : selection.toArray()) {
38
            FeatureNode featureNode = (FeatureNode) selectedObject;
39
            CdmStore.getService(IFeatureNodeService.class).deleteFeatureNode(featureNode.getUuid(), new FeatureNodeDeletionConfigurator());
40
        }
41
        IE4ViewerPart editor = (IE4ViewerPart) thisPart.getObject();
42
        editor.refresh();
43
    }
44

    
45
    @CanExecute
46
    public boolean canExecute(
47
            @Optional@Named(IServiceConstants.ACTIVE_SELECTION)IStructuredSelection selection,
48
            @Named(IServiceConstants.ACTIVE_PART)MPart thisPart,
49
            MHandledMenuItem menuItem) {
50
        boolean canExecute = selection!=null && !selection.isEmpty();
51
        for(Object object:selection.toArray()){
52
            canExecute &= object instanceof FeatureNode;
53
        }
54
        canExecute &= thisPart.getObject() instanceof IE4ViewerPart;
55
        menuItem.setVisible(canExecute);
56
        return canExecute;
57
    }
58

    
59
}
(5-5/6)