Project

General

Profile

« Previous | Next » 

Revision 360b73f0

Added by Patrick Plitzner over 6 years ago

ref #6908 Migrate polytomous key list editor handlers

View differences:

eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/key/polytomous/e4/handler/RefreshPolytomousKeyListHandlerE4.java
1 1
/**
2 2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
3
* European Distributed Institute of Taxonomy
4 4
* http://www.e-taxonomy.eu
5
* 
5
*
6 6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7 7
* See LICENSE.TXT at the top of this package for the full license terms.
8 8
*/
9 9

  
10 10
package eu.etaxonomy.taxeditor.navigation.key.polytomous.e4.handler;
11 11

  
12
import org.eclipse.core.commands.AbstractHandler;
13
import org.eclipse.core.commands.ExecutionEvent;
14
import org.eclipse.core.commands.ExecutionException;
15
import org.eclipse.core.commands.IHandler;
12
import javax.inject.Named;
16 13

  
17
import eu.etaxonomy.taxeditor.navigation.NavigationUtil;
18
import eu.etaxonomy.taxeditor.navigation.key.polytomous.PolytomousKeyViewPart;
14
import org.eclipse.e4.core.di.annotations.Execute;
15
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
16
import org.eclipse.e4.ui.services.IServiceConstants;
17

  
18
import eu.etaxonomy.taxeditor.navigation.key.polytomous.e4.PolytomousKeyViewPartE4;
19 19

  
20 20

  
21 21
/**
......
25 25
 * @created Jan 17 2013
26 26
 * @version 1.0
27 27
 */
28
public class RefreshPolytomousKeyListHandlerE4 extends AbstractHandler implements IHandler {
29

  
30
    /* (non-Javadoc)
31
     * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
32
     */
33
    /** {@inheritDoc} */
34
    public Object execute(ExecutionEvent event) throws ExecutionException {
35
    	PolytomousKeyViewPart view = (PolytomousKeyViewPart) NavigationUtil.getView(PolytomousKeyViewPart.ID, false); 
28
public class RefreshPolytomousKeyListHandlerE4 {
29

  
30
    @Execute
31
    public void execute(@Named(IServiceConstants.ACTIVE_PART)MPart activePart) {
32
        PolytomousKeyViewPartE4 view = (PolytomousKeyViewPartE4) activePart.getObject();
36 33
    	view.refresh();
37
        return null;
38 34
    }
39 35
}
40 36

  

Also available in: Unified diff