Project

General

Profile

Download (2.87 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.view.concept.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.common.NotDefinedException;
18
import org.eclipse.swt.widgets.Event;
19
import org.eclipse.ui.IWorkbenchPart;
20
import org.eclipse.ui.handlers.HandlerUtil;
21

    
22
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
23
import eu.etaxonomy.cdm.model.taxon.Taxon;
24
import eu.etaxonomy.cdm.model.taxon.TaxonRelationship;
25
import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
26
import eu.etaxonomy.taxeditor.editor.EditorUtil;
27
import eu.etaxonomy.taxeditor.editor.Page;
28
import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
29
import eu.etaxonomy.taxeditor.editor.view.concept.operation.CreateConceptRelationOperation;
30
import eu.etaxonomy.taxeditor.model.TaxonRelationshipTypeInverseContainer;
31
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
32
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
33
import eu.etaxonomy.taxeditor.parser.ParseHandler;
34
import eu.etaxonomy.taxeditor.ui.dialogs.filteredSelection.TaxonBaseSelectionDialog;
35

    
36
/**
37
 * <p>CreateConceptRelationHandler class.</p>
38
 *
39
 * @author n.hoffmann
40
 * @created 16.04.2009
41
 * @version 1.0
42
 */
43
public class CreateConceptRelationHandler extends AbstractHandler {
44
	private static final Logger logger = Logger
45
			.getLogger(CreateConceptRelationHandler.class);
46

    
47
	/* (non-Javadoc)
48
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
49
	 */
50
	/** {@inheritDoc} */
51
	public Object execute(ExecutionEvent event) throws ExecutionException {
52
		TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
53
				Page.NAME);
54
		
55
		Taxon relatedConcept = TaxonBaseSelectionDialog.selectTaxon(HandlerUtil.getActiveShell(event), editor.getConversationHolder());
56
				
57
		TaxonRelationshipTypeInverseContainer typeInverseContainer = (TaxonRelationshipTypeInverseContainer) ((Event)event.getTrigger()).data;
58
		
59
		IWorkbenchPart activePart = HandlerUtil.getActivePart(event);
60
		IPostOperationEnabled postOperationEnabled = (activePart instanceof IPostOperationEnabled) ? (IPostOperationEnabled) activePart : null;
61
		
62
		try {
63
			AbstractPostOperation operation = new CreateConceptRelationOperation(event.getCommand().getName(), 
64
					editor.getUndoContext(), editor.getTaxon(), relatedConcept, typeInverseContainer, postOperationEnabled);
65
			EditorUtil.executeOperation(operation);
66
		} catch (NotDefinedException e) {
67
			EditorUtil.warn(getClass(), "Command name not set");
68
		}
69
		
70
		return null;
71
	}
72
}
(5-5/8)