Project

General

Profile

Download (1.56 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.user.handler;
12

    
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.jface.viewers.ISelection;
17
import org.eclipse.jface.viewers.StructuredSelection;
18
import org.eclipse.jface.wizard.WizardDialog;
19
import org.eclipse.ui.handlers.HandlerUtil;
20

    
21
import eu.etaxonomy.cdm.model.common.User;
22
import eu.etaxonomy.taxeditor.user.view.UserManagerView;
23
import eu.etaxonomy.taxeditor.user.wizard.UserWizard;
24

    
25
/**
26
 * <p>EditUserHandler class.</p>
27
 *
28
 * @author n.hoffmann
29
 * @created 02.07.2009
30
 * @version 1.0
31
 */
32
public class EditUserHandler extends AbstractHandler {
33

    
34
	/* (non-Javadoc)
35
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
36
	 */
37
	/** {@inheritDoc} */
38
	public Object execute(ExecutionEvent event) throws ExecutionException {
39
		ISelection menuSelection = HandlerUtil.getActiveMenuSelection(event);
40
		User user = (User) ((StructuredSelection) menuSelection).getFirstElement();
41

    
42
		UserManagerView part = (UserManagerView) HandlerUtil.getActivePart(event);
43
		
44
		UserWizard wizard = new UserWizard(part, user);
45
		WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
46
	    dialog.open();
47
	    
48
		return null;
49
	}
50
}
(2-2/3)