Merged refactoring from development branch.
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / account / user / handler / CreateUserHandler.java
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.account.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.core.runtime.IStatus;
17 import org.eclipse.jface.wizard.WizardDialog;
18 import org.eclipse.swt.widgets.Shell;
19 import org.eclipse.ui.handlers.HandlerUtil;
20
21 import eu.etaxonomy.taxeditor.newWizard.NewUserWizard;
22 import eu.etaxonomy.taxeditor.view.user.UserView;
23
24 /**
25 * <p>CreateUserHandler class.</p>
26 *
27 * @author n.hoffmann
28 * @created 02.07.2009
29 * @version 1.0
30 */
31 public class CreateUserHandler extends AbstractHandler {
32
33 /* (non-Javadoc)
34 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
35 */
36 /** {@inheritDoc} */
37 public Object execute(ExecutionEvent event) throws ExecutionException {
38 UserView part = (UserView) HandlerUtil.getActivePart(event);
39
40 NewUserWizard wizard = new NewUserWizard();
41 wizard.init(null, null);
42
43 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
44 if(dialog.open() == IStatus.OK){
45 part.getViewer().refresh();
46 }
47 return null;
48 }
49 }