Moving editor sources back into trunk
[taxeditor.git] / taxeditor-navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / handler / CreateChildTaxonHandler.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.navigation.handler;
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 import org.eclipse.core.commands.IHandler;
17
18 import eu.etaxonomy.cdm.model.taxon.Taxon;
19 import eu.etaxonomy.taxeditor.navigation.NavigationUtil;
20
21 /**
22 * @author n.hoffmann
23 * @created 24.03.2009
24 * @version 1.0
25 */
26 public class CreateChildTaxonHandler extends AbstractHandler implements
27 IHandler {
28 private static final Logger logger = Logger
29 .getLogger(CreateChildTaxonHandler.class);
30
31 /* (non-Javadoc)
32 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
33 */
34 public Object execute(ExecutionEvent event) throws ExecutionException {
35 Taxon parentTaxon = NavigationUtil.getCurrentSelection(event);
36
37 // Open editor for new taxon
38 NavigationUtil.openEmpty(parentTaxon);
39
40 return null;
41 }
42 }