Project

General

Profile

Download (531 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package eu.etaxonomy.taxeditor.handler.defaultHandler;
2

    
3
import org.eclipse.core.commands.AbstractHandler;
4
import org.eclipse.core.commands.ExecutionEvent;
5
import org.eclipse.core.commands.ExecutionException;
6

    
7
import eu.etaxonomy.taxeditor.model.AbstractUtility;
8

    
9
public class OpenReferencingObjectsView extends AbstractHandler {
10

    
11
    @Override
12
    public Object execute(ExecutionEvent event) throws ExecutionException {
13
        return AbstractUtility.showView("eu.etaxonomy.taxeditor.bulkeditor.view.referencingobjects");
14
    }
15

    
16
}
(5-5/5)