Project

General

Profile

Download (1.28 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.key.polytomous.handler;
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;
16

    
17
import eu.etaxonomy.taxeditor.navigation.NavigationUtil;
18
import eu.etaxonomy.taxeditor.navigation.key.polytomous.PolytomousKeyViewPart;
19

    
20

    
21
/**
22
 * <p>Handler class which Refreshes each key node in the polytomous key navigation view</p>
23
 *
24
 * @author c.mathew
25
 * @created Jan 17 2013
26
 * @version 1.0
27
 */
28
public class RefreshPolytomousKeyListHandler 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); 
36
    	view.refresh();
37
        return null;
38
    }
39
}
40

    
(4-4/8)