editor now updatable via updateSite
[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.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.cdm.model.taxon.Taxon;
18 import eu.etaxonomy.taxeditor.navigation.NavigationUtil;
19
20 /**
21 * @author n.hoffmann
22 * @created 24.03.2009
23 * @version 1.0
24 */
25 public class CreateChildTaxonHandler extends AbstractHandler implements
26 IHandler {
27
28 /* (non-Javadoc)
29 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
30 */
31 public Object execute(ExecutionEvent event) throws ExecutionException {
32 Taxon parentTaxon = NavigationUtil.getCurrentSelection(event);
33
34 // Open editor for new taxon
35 NavigationUtil.openEmpty(parentTaxon);
36
37 return null;
38 }
39 }