Project

General

Profile

Download (2.16 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.common.NotDefinedException;
18

    
19
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
20
import eu.etaxonomy.cdm.model.taxon.Taxon;
21
import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
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.view.concept.operation.CreateConceptRelationOperation;
26
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
27
import eu.etaxonomy.taxeditor.parser.ParseHandler;
28

    
29
/**
30
 * <p>CreateMisapplicationHandler class.</p>
31
 *
32
 * @author n.hoffmann
33
 * @created 16.04.2009
34
 * @version 1.0
35
 */
36
public class CreateMisapplicationHandler extends AbstractHandler {
37
	private static final Logger logger = Logger
38
			.getLogger(CreateMisapplicationHandler.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
		TaxonNameEditor editor = (TaxonNameEditor) EditorUtil.getActiveEditorPage(
46
				Page.NAME);
47
		
48

    
49
		TaxonNameBase conceptName = ParseHandler.createEmptyName();
50
		Taxon concept = Taxon.NewInstance(conceptName, null);
51
		
52
		TaxonRelationshipType type = TaxonRelationshipType.MISAPPLIED_NAME_FOR();
53
		
54
		AbstractPostOperation operation;
55
		try {
56
			operation = new CreateConceptRelationOperation(event.getCommand().getName(), 
57
					editor.getUndoContext(), editor.getTaxon(), concept, type, editor);
58
			EditorUtil.executeOperation(operation);
59
		} catch (NotDefinedException e) {
60
			logger.warn("Command name not set");
61
		}
62
				
63
		return null;
64
	}
65
}
(7-7/16)