2ad00da8bb2a1aa5acf6a6f8b4397e6e03a1b601
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / view / checklist / handler / CreateDescriptionHandler.java
1 // $Id$
2 /**
3 * Copyright (C) 2011 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 package eu.etaxonomy.taxeditor.editor.view.checklist.handler;
11
12 import org.eclipse.core.commands.AbstractHandler;
13 import org.eclipse.core.commands.ExecutionEvent;
14 import org.eclipse.core.commands.ExecutionException;
15 import org.eclipse.core.commands.common.NotDefinedException;
16 import org.eclipse.ui.IEditorInput;
17 import org.eclipse.ui.IEditorPart;
18 import org.eclipse.ui.IWorkbenchPart;
19 import org.eclipse.ui.forms.editor.FormEditor;
20 import org.eclipse.ui.handlers.HandlerUtil;
21
22 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;
23 import eu.etaxonomy.cdm.model.taxon.Taxon;
24 import eu.etaxonomy.taxeditor.editor.EditorUtil;
25 import eu.etaxonomy.taxeditor.editor.TaxonEditorInput;
26 import eu.etaxonomy.taxeditor.editor.view.descriptive.DescriptiveViewPart;
27 import eu.etaxonomy.taxeditor.editor.view.descriptive.operation.CreateSpecimenDescriptionOperation;
28 import eu.etaxonomy.taxeditor.editor.view.descriptive.operation.CreateTaxonDescriptionOperation;
29 import eu.etaxonomy.taxeditor.model.AbstractUtility;
30 import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
31 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
32
33 /**
34 * <p>AddDescriptionHandler class.</p>
35 *
36 * @author p.ciardelli
37 * @created 11.08.2009
38 * @version 1.0
39 */
40 public class CreateDescriptionHandler extends AbstractHandler {
41
42 /* (non-Javadoc)
43 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
44 */
45 /** {@inheritDoc} */
46 @Override
47 public Object execute(ExecutionEvent event) throws ExecutionException {
48 IWorkbenchPart part = HandlerUtil.getActivePart(event);
49 IPostOperationEnabled postOperationEnabled = (part instanceof IPostOperationEnabled) ? (IPostOperationEnabled) part : null;
50
51 IEditorPart editor = HandlerUtil.getActiveEditor(event);
52 if (editor instanceof FormEditor) {
53 editor = ((FormEditor) editor).getActiveEditor();
54 }
55 IEditorInput input = editor.getEditorInput();
56 AbstractPostOperation<?> operation;
57
58 // taxon description
59 if (input instanceof TaxonEditorInput) {
60 Taxon taxon = ((TaxonEditorInput) input).getTaxon();
61 try {
62 operation = createTaxonOperation(event.getCommand().getName(), taxon, postOperationEnabled);
63 AbstractUtility.executeOperation(operation);
64 } catch (NotDefinedException e) {
65 AbstractUtility.warn(getClass(), "Command name not set.");
66 }
67 }
68 // specimen description
69 else if(part instanceof DescriptiveViewPart){
70 Object viewerInput = ((DescriptiveViewPart)part).getViewer().getInput();
71 if(viewerInput instanceof SpecimenOrObservationBase<?>){
72 try {
73 operation = new CreateSpecimenDescriptionOperation(event.getCommand().getName(), EditorUtil.getUndoContext(), (SpecimenOrObservationBase<?>) viewerInput, postOperationEnabled);
74 AbstractUtility.executeOperation(operation);
75 } catch (NotDefinedException e) {
76 AbstractUtility.warn(getClass(), "Command name not set.");
77 }
78 }
79 }
80 return null;
81 }
82
83 /** {@inheritDoc} */
84 protected CreateTaxonDescriptionOperation createTaxonOperation(String eventLabel, Taxon taxon, IPostOperationEnabled postOperationEnabled) {
85 return new CreateTaxonDescriptionOperation(eventLabel, EditorUtil.getUndoContext(), taxon, postOperationEnabled);
86 }
87
88 }