Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.navigation.key.polytomous.handler;
12

    
13
import org.eclipse.core.commands.AbstractHandler;
14
import org.eclipse.core.commands.ExecutionEvent;
15
import org.eclipse.core.commands.ExecutionException;
16
import org.eclipse.core.commands.IHandler;
17

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

    
21

    
22
/**
23
 * <p>Handler class which Refreshes each key node in the polytomous key navigation view</p>
24
 *
25
 * @author c.mathew
26
 * @created Jan 17 2013
27
 * @version 1.0
28
 */
29
public class RefreshPolytomousKeyListHandler extends AbstractHandler implements IHandler {
30

    
31
    /* (non-Javadoc)
32
     * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
33
     */
34
    /** {@inheritDoc} */
35
    public Object execute(ExecutionEvent event) throws ExecutionException {
36
    	PolytomousKeyViewPart view = (PolytomousKeyViewPart) NavigationUtil.getView(PolytomousKeyViewPart.ID, false); 
37
    	view.refresh();
38
        return null;
39
    }
40
}
41

    
(4-4/5)