Project

General

Profile

Download (2.2 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.navigation.key.polytomous.handler;
12

    
13
import java.util.List;
14

    
15
import org.eclipse.core.commands.AbstractHandler;
16
import org.eclipse.core.commands.ExecutionEvent;
17
import org.eclipse.core.commands.ExecutionException;
18
import org.eclipse.core.commands.common.NotDefinedException;
19
import org.eclipse.jface.viewers.IStructuredSelection;
20
import org.eclipse.ui.handlers.HandlerUtil;
21

    
22
import eu.etaxonomy.cdm.model.description.PolytomousKey;
23
import eu.etaxonomy.taxeditor.navigation.NavigationUtil;
24
import eu.etaxonomy.taxeditor.navigation.key.polytomous.PolytomousKeyViewPart;
25
import eu.etaxonomy.taxeditor.navigation.key.polytomous.operation.DeleteOperation;
26
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
27

    
28
/**
29
 * @author n.hoffmann
30
 * @created Dec 3, 2010
31
 * @version 1.0
32
 */
33
public class DeleteHandler extends AbstractHandler {
34

    
35
	/* (non-Javadoc)
36
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
37
	 */
38
	@Override
39
	public Object execute(ExecutionEvent event) throws ExecutionException {
40
		IStructuredSelection selection = (IStructuredSelection) HandlerUtil.getCurrentSelection(event);
41
		
42
		List<PolytomousKey> keys = selection.toList();
43
		
44
		if(keys.isEmpty()){
45
			return null;
46
		}
47
		
48
		boolean confirmation = NavigationUtil.confirmDialog("Confirm deletaion", "Do you want to delete the selected key" + (keys.size() == 1 ? "" : "s") + "?");
49
		
50
		if(confirmation){
51
		
52
			for(PolytomousKey key : keys){
53
				try {
54
					AbstractPostOperation operation = new DeleteOperation(
55
							event.getCommand().getName(),
56
							NavigationUtil.getUndoContext(), key, 
57
							(PolytomousKeyViewPart) NavigationUtil.getView(PolytomousKeyViewPart.ID, false),
58
							(PolytomousKeyViewPart) NavigationUtil.getView(PolytomousKeyViewPart.ID, false));
59
					NavigationUtil.executeOperation(operation);
60
				} catch (NotDefinedException e) {
61
					NavigationUtil.error(getClass(), e);
62
				}
63
			}
64
		}
65
		
66
		return null;
67
	}
68

    
69
}
(1-1/5)