Project

General

Profile

Download (2.44 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
package eu.etaxonomy.taxeditor.editor.view.descriptive.handler;
11
import org.apache.log4j.Logger;
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.taxon.Taxon;
23
import eu.etaxonomy.taxeditor.editor.EditorUtil;
24
import eu.etaxonomy.taxeditor.editor.TaxonEditorInput;
25
import eu.etaxonomy.taxeditor.operations.AbstractPostOperation;
26
import eu.etaxonomy.taxeditor.operations.CreateTaxonDescriptionOperation;
27
import eu.etaxonomy.taxeditor.operations.IPostOperationEnabled;
28

    
29
/**
30
 * <p>AddDescriptionHandler class.</p>
31
 *
32
 * @author p.ciardelli
33
 * @created 11.08.2009
34
 * @version 1.0
35
 */
36
public class AddDescriptionHandler extends AbstractHandler {
37
	private static final Logger logger = Logger
38
			.getLogger(CreateDescriptionElementHandler.class);
39

    
40
	/* (non-Javadoc)
41
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
42
	 */
43
	/** {@inheritDoc} */
44
	public Object execute(ExecutionEvent event) throws ExecutionException {
45
		IWorkbenchPart part = HandlerUtil.getActivePart(event);
46
		IPostOperationEnabled postOperationEnabled = (part instanceof IPostOperationEnabled) ? (IPostOperationEnabled) part : null;
47
		
48
		
49
		IEditorPart editor = HandlerUtil.getActiveEditor(event);
50
		if (editor instanceof FormEditor) {
51
			editor = ((FormEditor) editor).getActiveEditor();
52
		}
53
		IEditorInput input = editor.getEditorInput();
54
		if (input instanceof TaxonEditorInput) {
55
			Taxon taxon = ((TaxonEditorInput) input).getTaxon();	
56
			AbstractPostOperation operation;
57
			try {
58
				// TODO use undo context specific to editor
59
				operation = new CreateTaxonDescriptionOperation(event.getCommand().getName(), 
60
						EditorUtil.getUndoContext(), taxon, postOperationEnabled);
61
				EditorUtil.executeOperation(operation);
62
			} catch (NotDefinedException e) {
63
				logger.warn("Command name not set");
64
			}
65
		} 
66
		return null;
67
	}
68

    
69
}
(1-1/5)