Project

General

Profile

Download (734 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.editor.view.descriptive.operation;
5

    
6
import org.eclipse.core.commands.AbstractHandler;
7
import org.eclipse.core.commands.ExecutionEvent;
8
import org.eclipse.core.commands.ExecutionException;
9

    
10
import eu.etaxonomy.taxeditor.editor.EditorUtil;
11

    
12
/**
13
 * @author n.hoffmann
14
 *
15
 */
16
public class EditInXper2Handler extends AbstractHandler {
17

    
18
	/* (non-Javadoc)
19
	 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
20
	 */
21
	@Override
22
	public Object execute(ExecutionEvent event) throws ExecutionException {
23
		EditorUtil.warningDialog("Operation not supported yet", getClass(), "This operation is not supported yet.");
24
		return null;
25
	}
26

    
27
}
(5-5/6)