automated build configuration is on its way
[taxeditor.git] / taxeditor-navigation / src / main / java / eu / etaxonomy / taxeditor / navigation / navigator / handler / NewClassificationHandler.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.navigation.navigator.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.commands.IHandler;
17 import org.eclipse.jface.wizard.WizardDialog;
18 import org.eclipse.ui.handlers.HandlerUtil;
19
20 import eu.etaxonomy.taxeditor.newWizard.NewClassificationWizard;
21
22 /**
23 * <p>NewClassificationHandler class.</p>
24 *
25 * @author n.hoffmann
26 * @created Sep 15, 2009
27 * @version 1.0
28 */
29 public class NewClassificationHandler extends AbstractHandler implements
30 IHandler {
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 NewClassificationWizard wizard = new NewClassificationWizard();
38 wizard.init(null, null);
39 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
40 dialog.open();
41
42 return null;
43 }
44 }