Moving editor sources back into trunk
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / handler / CreateMisapplicationHandler.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.name.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.common.NotDefinedException;
18 import org.eclipse.core.commands.operations.IUndoableOperation;
19
20 import eu.etaxonomy.taxeditor.editor.EditorUtil;
21 import eu.etaxonomy.taxeditor.editor.Page;
22 import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
23 import eu.etaxonomy.taxeditor.store.operations.CreateMisapplicationOperation;
24
25 /**
26 * @author n.hoffmann
27 * @created 16.04.2009
28 * @version 1.0
29 */
30 public class CreateMisapplicationHandler extends AbstractHandler {
31 private static final Logger logger = Logger
32 .getLogger(CreateMisapplicationHandler.class);
33
34 /* (non-Javadoc)
35 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
36 */
37 public Object execute(ExecutionEvent event) throws ExecutionException {
38 TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
39 Page.NAME);
40
41 IUndoableOperation operation;
42 try {
43 operation = new CreateMisapplicationOperation(event.getCommand().getName(),
44 editor.getUndoContext(), editor.getTaxon(), editor);
45 EditorUtil.executeOperation(operation);
46 } catch (NotDefinedException e) {
47 logger.warn("Command name not set");
48 }
49
50 return null;
51 }
52 }