p2izing the editor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / handlers / OpenTaxonHandler.java
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.handlers;
11
12 import org.apache.log4j.Logger;
13 import org.eclipse.core.commands.AbstractHandler;
14 import org.eclipse.core.commands.ExecutionEvent;
15 import org.eclipse.core.commands.ExecutionException;
16
17 import eu.etaxonomy.taxeditor.controller.EditorController;
18 import eu.etaxonomy.taxeditor.controller.TreeController;
19
20 /**
21 * @author n.hoffmann
22 * @created 06.02.2009
23 * @version 1.0
24 */
25 public class OpenTaxonHandler extends AbstractHandler{
26 private static final Logger logger = Logger
27 .getLogger(OpenTaxonHandler.class);
28
29 /* (non-Javadoc)
30 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
31 */
32 public Object execute(ExecutionEvent event) throws ExecutionException {
33
34 EditorController.open(TreeController.getCurrentSelection(event));
35
36 return null;
37 }
38 }