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