Merge branch 'release/4.6.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / handler / RemoveBasionymHandler.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.jface.viewers.IStructuredSelection;
19 import org.eclipse.ui.handlers.HandlerUtil;
20
21 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
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.editor.name.operation.RemoveHomotypicalGroupBasionymOperation;
26 import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
27
28 /**
29 * <p>RemoveBasionymHandler class.</p>
30 *
31 * @author n.hoffmann
32 * @created 21.04.2009
33 * @version 1.0
34 */
35 public class RemoveBasionymHandler extends AbstractHandler implements IHandler {
36 private static final Logger logger = Logger
37 .getLogger(RemoveBasionymHandler.class);
38
39 /* (non-Javadoc)
40 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
41 */
42 /** {@inheritDoc} */
43 public Object execute(ExecutionEvent event) throws ExecutionException {
44 TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
45 Page.NAME);
46
47 IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getCurrentSelection(event);
48
49 TaxonBase selectedTaxonBase = (TaxonBase) selection.getFirstElement();
50
51 AbstractPostOperation operation;
52
53 try {
54 operation = new RemoveHomotypicalGroupBasionymOperation(event.getCommand().getName(), editor.getUndoContext(),
55 editor.getTaxon(), selectedTaxonBase, editor);
56 EditorUtil.executeOperation(operation);
57 } catch (NotDefinedException e) {
58 logger.warn("Command name not set"); //$NON-NLS-1$
59 }
60
61 return null;
62 }
63 }