performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / 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.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.wizard.WizardDialog;
17 import org.eclipse.swt.widgets.Shell;
18 import org.eclipse.ui.handlers.HandlerUtil;
19
20 import eu.etaxonomy.taxeditor.user.view.UserManagerView;
21 import eu.etaxonomy.taxeditor.user.wizard.UserWizard;
22
23 /**
24 * <p>CreateUserHandler class.</p>
25 *
26 * @author n.hoffmann
27 * @created 02.07.2009
28 * @version 1.0
29 */
30 public class CreateUserHandler extends AbstractHandler {
31
32 /* (non-Javadoc)
33 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
34 */
35 /** {@inheritDoc} */
36 public Object execute(ExecutionEvent event) throws ExecutionException {
37 Shell shell = HandlerUtil.getActiveShell(event);
38
39 UserManagerView part = (UserManagerView) HandlerUtil.getActivePart(event);
40 UserWizard wizard = new UserWizard(part);
41
42 WizardDialog dialog = new WizardDialog(shell, wizard);
43 dialog.open();
44 return null;
45 }
46 }