Moving editor sources back into trunk
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / CreateChildTaxonHandler.java
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.editor.handler;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.core.commands.AbstractHandler;
15 import org.eclipse.core.commands.ExecutionEvent;
16 import org.eclipse.core.commands.ExecutionException;
17 import org.eclipse.core.commands.IHandler;
18
19 /**
20 * @author n.hoffmann
21 * @created 21.04.2009
22 * @version 1.0
23 *
24 * @deprecated Seems to be unused
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 logger.error("Not yet implemented");
36 return null;
37 }
38 }