Project

General

Profile

Download (1.34 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.navigation.navigator.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.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.taxeditor.navigation.navigator.e4.TaxonNavigatorE4;
22

    
23
/**
24
 *
25
 * @author pplitzner
26
 * @date 05.09.2017
27
 *
28
 */
29
public class RefreshTreeHandlerE4 {
30

    
31
    @Execute
32
    public void execute(@Named(IServiceConstants.ACTIVE_PART)MPart activePart) {
33

    
34
        TaxonNavigatorE4 taxonNavigator = (TaxonNavigatorE4) activePart.getObject();
35

    
36
        taxonNavigator.refresh();
37
	}
38

    
39
    @CanExecute
40
    private boolean canExecute(@Named(IServiceConstants.ACTIVE_SELECTION)TreeSelection selection, MHandledMenuItem menuItem){
41
        boolean canExecute = false;
42
        canExecute = !selection.isEmpty();
43
        menuItem.setVisible(canExecute);
44
        return canExecute;
45
    }
46
}
(9-9/20)