ref #6190 removing svn property place holder in first line of code - java files
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / create / NewReferenceHandler.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.editor.handler.create;
11
12 import org.apache.log4j.Logger;
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.NewReferenceWizard;
21
22 /**
23 * <p>NewReferenceHandler class.</p>
24 *
25 * @author n.hoffmann
26 * @created Jun 1, 2010
27 * @version 1.0
28 */
29 public class NewReferenceHandler extends AbstractHandler implements IHandler {
30 private static final Logger logger = Logger
31 .getLogger(NewReferenceHandler.class);
32
33 /** {@inheritDoc} */
34 public Object execute(ExecutionEvent event) throws ExecutionException {
35 NewReferenceWizard wizard = new NewReferenceWizard();
36 wizard.init(null, null);
37 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
38 dialog.open();
39
40 return null;
41 }
42
43 }