migrating to cdmlib-plugin 2.0.0.20 including new term loading
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / handlers / 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.handlers;
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.controller.EditorController;
23 import eu.etaxonomy.taxeditor.controller.GlobalController;
24 import eu.etaxonomy.taxeditor.operations.name.CreateSynonymInExisitingHomotypicalGroupOperation;
25
26 /**
27 * @author n.hoffmann
28 * @created 06.02.2009
29 * @version 1.0
30 */
31 public class CreateHomotypicSynonymHandler extends AbstractHandler implements
32 IHandler {
33 private static final Logger logger = Logger
34 .getLogger(CreateHomotypicSynonymHandler.class);
35
36 /* (non-Javadoc)
37 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
38 */
39 public Object execute(ExecutionEvent event) throws ExecutionException {
40 Taxon taxon = EditorController.getActiveEditor().getTaxon();
41 HomotypicalGroup group = taxon.getHomotypicGroup();
42
43 IUndoableOperation operation;
44 try {
45 operation = new CreateSynonymInExisitingHomotypicalGroupOperation(event.getCommand().getName(),
46 EditorController.getUndoContext(taxon), taxon, group, "");
47 GlobalController.executeOperation(operation);
48 } catch (NotDefinedException e) {
49 logger.warn("Command name not set");
50 }
51
52
53 return null;
54 }
55 }