Project

General

Profile

Download (2.46 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2009 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.definedterm.handler;
11

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

    
21
import eu.etaxonomy.cdm.model.common.TermBase;
22
import eu.etaxonomy.taxeditor.editor.definedterm.DefinedTermEditor;
23
import eu.etaxonomy.taxeditor.editor.definedterm.operation.CreateDefinedTermOperation;
24
import eu.etaxonomy.taxeditor.model.MessagingUtils;
25
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
26
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
27
import eu.etaxonomy.taxeditor.store.StoreUtil;
28

    
29
/**
30
 * @author l.morris
31
 * @date 21 Dec 2011
32
 * 
33
 */
34
public class CreateDefinedTermHandler extends AbstractHandler implements IHandler {
35

    
36
	/*
37
	 * (non-Javadoc)
38
	 * 
39
	 * @see
40
	 * org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.
41
	 * ExecutionEvent)
42
	 */
43
	@Override
44
	public Object execute(ExecutionEvent event) throws ExecutionException {
45
		IPostOperationEnabled editor = (IPostOperationEnabled) HandlerUtil
46
				.getActiveEditor(event);
47

    
48
		if (editor instanceof DefinedTermEditor){
49
			DefinedTermEditor dfe = (DefinedTermEditor) editor;
50
			IStructuredSelection selection = (IStructuredSelection) HandlerUtil
51
					.getCurrentSelection(event);
52
			if (selection.getFirstElement() instanceof TermBase) {
53
				try {
54
					String label = event.getCommand().getName();
55
					IUndoContext undoContext = StoreUtil.getUndoContext();
56

    
57
					TermBase termBase = (TermBase) selection.getFirstElement();
58

    
59
					AbstractPostOperation operation = 
60
							new CreateDefinedTermOperation(label, 
61
									undoContext, 
62
									termBase, 
63
									dfe.getDefinedTermEditorInput(),
64
									editor);
65
					StoreUtil.executeOperation(operation);
66

    
67
				} catch (NotDefinedException e) {
68
					MessagingUtils.error(getClass(), e);
69
				}
70
			}
71
		}
72

    
73
		return null;
74
	}
75

    
76
	}
(1-1/4)