Fix spacing for detail view elements #5436
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / handler / ChangeToMisapplicationHandler.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.IHandler;
18 import org.eclipse.core.commands.common.NotDefinedException;
19 import org.eclipse.swt.widgets.Shell;
20 import org.eclipse.ui.handlers.HandlerUtil;
21
22 import eu.etaxonomy.cdm.model.taxon.Synonym;
23 import eu.etaxonomy.cdm.model.taxon.Taxon;
24 import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
25 import eu.etaxonomy.taxeditor.editor.EditorUtil;
26 import eu.etaxonomy.taxeditor.editor.Page;
27 import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
28 import eu.etaxonomy.taxeditor.editor.name.operation.ChangeConceptRelationshipTypeOperation;
29 import eu.etaxonomy.taxeditor.editor.name.operation.ChangeSynonymToMisapplicationOperation;
30 import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
31
32 /**
33 * <p>ChangeToMisapplicationHandler class.</p>
34 *
35 * @author n.hoffmann
36 * @created 21.04.2009
37 * @version 1.0
38 */
39 public class ChangeToMisapplicationHandler extends AbstractHandler implements
40 IHandler {
41 private static final Logger logger = Logger
42 .getLogger(ChangeToMisapplicationHandler.class);
43
44 /* (non-Javadoc)
45 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
46 */
47 /** {@inheritDoc} */
48 @Override
49 public Object execute(ExecutionEvent event) throws ExecutionException {
50 TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
51 Page.NAME);
52 Shell shell = HandlerUtil.getActiveShell(event);
53 if (!EditorUtil.forceUserSave(editor, shell)) {
54 return null;
55 }
56 Object selectedElement = EditorUtil.getSelection(event).getFirstElement();
57
58 AbstractPostOperation operation = null;
59 try {
60 if(selectedElement instanceof Taxon){
61 operation = new ChangeConceptRelationshipTypeOperation(event.getCommand().getName(),
62 editor.getUndoContext(), editor.getTaxon(), (Taxon) selectedElement, TaxonRelationshipType.MISAPPLIED_NAME_FOR(), editor);
63 }
64 if(selectedElement instanceof Synonym){
65 operation = new ChangeSynonymToMisapplicationOperation(event.getCommand().getName(),
66 editor.getUndoContext(), editor.getTaxon(), (Synonym) selectedElement, editor);
67 }
68
69 EditorUtil.executeOperation(operation);
70 } catch (NotDefinedException e) {
71 logger.warn("Command name not set");
72 }
73
74 return null;
75 }
76 }