automated build configuration is on its way
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / create / NewPersonHandler.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.editor.handler.create;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.core.commands.AbstractHandler;
15 import org.eclipse.core.commands.ExecutionEvent;
16 import org.eclipse.core.commands.ExecutionException;
17 import org.eclipse.core.commands.IHandler;
18 import org.eclipse.jface.wizard.WizardDialog;
19 import org.eclipse.ui.handlers.HandlerUtil;
20
21 import eu.etaxonomy.taxeditor.newWizard.NewPersonWizard;
22
23 /**
24 * <p>NewPersonHandler class.</p>
25 *
26 * @author n.hoffmann
27 * @created Jun 1, 2010
28 * @version 1.0
29 */
30 public class NewPersonHandler extends AbstractHandler implements IHandler {
31 private static final Logger logger = Logger
32 .getLogger(NewPersonHandler.class);
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 NewPersonWizard wizard = new NewPersonWizard();
40 wizard.init(null, null);
41 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
42 dialog.open();
43
44 return null;
45 }
46 }