I18n for derivative module
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / view / derivate / handler / DeleteDerivateHandler.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.view.derivate.handler;
12
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.common.NotDefinedException;
17 import org.eclipse.core.commands.operations.IUndoContext;
18 import org.eclipse.jface.viewers.IStructuredSelection;
19 import org.eclipse.jface.viewers.TreeNode;
20 import org.eclipse.ui.IWorkbenchPart;
21 import org.eclipse.ui.handlers.HandlerUtil;
22
23 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
24 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
25 import eu.etaxonomy.cdm.api.service.config.SpecimenDeleteConfigurator;
26 import eu.etaxonomy.cdm.model.common.CdmBase;
27 import eu.etaxonomy.cdm.model.molecular.Sequence;
28 import eu.etaxonomy.cdm.model.molecular.SingleRead;
29 import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase;
30 import eu.etaxonomy.taxeditor.editor.EditorUtil;
31 import eu.etaxonomy.taxeditor.editor.view.derivate.operation.DeleteDerivateOperation;
32 import eu.etaxonomy.taxeditor.model.AbstractUtility;
33 import eu.etaxonomy.taxeditor.model.MessagingUtils;
34 import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
35 import eu.etaxonomy.taxeditor.view.derivateSearch.DerivateLabelProvider;
36
37 /**
38 *
39 * @author pplitzner
40 * @date Oct 21, 2014
41 *
42 */
43 public class DeleteDerivateHandler extends AbstractHandler {
44
45 /** {@inheritDoc} */
46 @Override
47 public Object execute(ExecutionEvent event) throws ExecutionException {
48 IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getActiveSite(event).getSelectionProvider().getSelection();
49
50 IWorkbenchPart part = HandlerUtil.getActivePart(event);
51 IPostOperationEnabled postOperationEnabled = (part instanceof IPostOperationEnabled) ? (IPostOperationEnabled) part : null;
52
53 try {
54 String label = event.getCommand().getName();
55
56 IUndoContext undoContext = EditorUtil.getUndoContext();
57
58 if(selection.size()>0){
59 Object object = selection.iterator().next();
60
61 if(object instanceof TreeNode){
62 Object value = ((TreeNode) object).getValue();
63 if(value instanceof SpecimenOrObservationBase<?> || value instanceof Sequence || value instanceof SingleRead){
64 if(postOperationEnabled instanceof IConversationEnabled){
65 ConversationHolder conversationHolder = ((IConversationEnabled) postOperationEnabled).getConversationHolder();
66 label += " "+DerivateLabelProvider.getDerivateText(value, conversationHolder); //$NON-NLS-1$
67 }
68 SpecimenDeleteConfigurator config = new SpecimenDeleteConfigurator();
69 boolean deepDelete = event.getCommand().getId().equals("eu.etaxonomy.taxeditor.editor.derivate.deepDelete"); //$NON-NLS-1$
70 config.setDeleteChildren(deepDelete);
71 config.setDeleteMolecularData(deepDelete);
72 DeleteDerivateOperation deleteDerivateOperation = new DeleteDerivateOperation(label, undoContext, (CdmBase) value, (TreeNode) object, postOperationEnabled, config);
73 AbstractUtility.executeOperation(deleteDerivateOperation);
74 }
75 }
76 else{
77 MessagingUtils.error(getClass(), "Selection is not valid for this delete handler", null);
78 }
79 }
80
81 } catch (NotDefinedException e) {
82 MessagingUtils.warn(getClass(), "Command name not set");
83 }
84 return null;
85 }
86 }