Project

General

Profile

Download (2.14 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
* 
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.editor.name.handler;
11

    
12
import org.apache.log4j.Logger;
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.IHandler;
17
import org.eclipse.core.commands.common.NotDefinedException;
18
import org.eclipse.jface.viewers.IStructuredSelection;
19
import org.eclipse.ui.handlers.HandlerUtil;
20

    
21
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
22
import eu.etaxonomy.taxeditor.editor.EditorUtil;
23
import eu.etaxonomy.taxeditor.editor.Page;
24
import eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor;
25
import eu.etaxonomy.taxeditor.editor.name.operation.ChangeHomotypicalGroupBasionymOperation;
26
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
27

    
28
/**
29
 * <p>SetBasionymHandler class.</p>
30
 *
31
 * @author n.hoffmann
32
 * @created 21.04.2009
33
 * @version 1.0
34
 */
35
public class SetBasionymHandler extends AbstractHandler implements IHandler {
36
	private static final Logger logger = Logger
37
			.getLogger(SetBasionymHandler.class);
38
	
39
	/* (non-Javadoc)
40
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
41
	 */
42
	/** {@inheritDoc} */
43
	public Object execute(ExecutionEvent event) throws ExecutionException {
44
		TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
45
				Page.NAME);
46
		
47
		IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getCurrentSelection(event);
48
				
49
		TaxonBase selectedTaxonBase = (TaxonBase) selection.getFirstElement();
50

    
51
		AbstractPostOperation operation;
52
		
53
		try {
54
			operation = new ChangeHomotypicalGroupBasionymOperation(event.getCommand().getName(), editor.getUndoContext(),
55
								editor.getTaxon(), selectedTaxonBase, editor);
56
			EditorUtil.executeOperation(operation);
57
		} catch (NotDefinedException e) {
58
			logger.warn("Command name not set"); //$NON-NLS-1$
59
		}
60
		
61
		return null;
62
	}
63
}
(14-14/15)