Project

General

Profile

Download (2.99 KB) Statistics
| Branch: | Tag: | Revision:
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.core.commands.operations.IUndoableOperation;
20
import org.eclipse.jface.viewers.ISelection;
21
import org.eclipse.jface.viewers.StructuredSelection;
22
import org.eclipse.ui.handlers.HandlerUtil;
23

    
24
import eu.etaxonomy.cdm.model.taxon.Synonym;
25
import eu.etaxonomy.cdm.model.taxon.Taxon;
26
import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
27
import eu.etaxonomy.taxeditor.editor.EditorUtil;
28
import eu.etaxonomy.taxeditor.editor.Page;
29
import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
30
import eu.etaxonomy.taxeditor.propertysheet.name.ConceptPropertySource;
31
import eu.etaxonomy.taxeditor.propertysheet.name.SynonymPropertySource;
32
import eu.etaxonomy.taxeditor.propertysheet.name.TaxonBasePropertySource;
33
import eu.etaxonomy.taxeditor.store.operations.ChangeConceptRelationshipTypeOperation;
34
import eu.etaxonomy.taxeditor.store.operations.ChangeSynonymToMisapplicationOperation;
35

    
36
/**
37
 * @author n.hoffmann
38
 * @created 21.04.2009
39
 * @version 1.0
40
 */
41
public class ChangeToMisapplicationHandler extends AbstractHandler implements
42
		IHandler {
43
	private static final Logger logger = Logger
44
			.getLogger(ChangeToMisapplicationHandler.class);
45

    
46
	/* (non-Javadoc)
47
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
48
	 */
49
	public Object execute(ExecutionEvent event) throws ExecutionException {
50
		TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
51
				Page.NAME);
52

    
53
		ISelection menuSelection = HandlerUtil.getActiveMenuSelection(event);
54
		
55
		TaxonBasePropertySource propertySource = (TaxonBasePropertySource) ((StructuredSelection) menuSelection).getFirstElement();
56
		
57
		IUndoableOperation operation = null;
58
		try {
59
			if(propertySource instanceof ConceptPropertySource){
60
				Taxon concept = (Taxon) propertySource.getTaxonBase();
61
				operation = new ChangeConceptRelationshipTypeOperation(event.getCommand().getName(), 
62
										editor.getUndoContext(), editor.getTaxon(), concept, TaxonRelationshipType.MISAPPLIED_NAME_FOR(), editor);
63
			}
64
			if(propertySource instanceof SynonymPropertySource){
65
				Synonym synonym = (Synonym) propertySource.getTaxonBase();
66
				operation = new ChangeSynonymToMisapplicationOperation(event.getCommand().getName(), 
67
						editor.getUndoContext(), editor.getTaxon(), synonym, editor);
68
			}
69
			
70
			EditorUtil.executeOperation(operation);
71
		} catch (NotDefinedException e) {
72
			logger.warn("Command name not set");
73
		}
74
		
75
		return null;
76
	}
77
}
(7-7/18)