Project

General

Profile

Download (1.34 KB) Statistics
| Branch: | Tag: | Revision:
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;
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.swt.widgets.Display;
18
import org.eclipse.ui.PartInitException;
19

    
20
import eu.etaxonomy.taxeditor.editor.EditorUtil;
21

    
22
/**
23
 * <p>EditNewTaxonHandler class.</p>
24
 *
25
 * @author n.hoffmann
26
 * @created 06.02.2009
27
 * @version 1.0
28
 */
29
public class EditNewTaxonHandler extends AbstractHandler implements IHandler {
30
	private static final Logger logger = Logger
31
			.getLogger(EditNewTaxonHandler.class);
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
		
39
		logger.debug("Handler called: " + this.getClass().getCanonicalName()); //$NON-NLS-1$
40
		
41
		try {
42
			EditorUtil.openEmptyE4(null);
43
		} catch (PartInitException e) {
44
			e.printStackTrace();
45
		}
46

    
47
		return null;
48
	}
49
}
(1-1/7)