Merge branch 'release/4.6.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / view / descriptive / operation / EditInXper2Handler.java
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.model.MessagingUtils;
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 MessagingUtils.warningDialog("Operation not supported yet", getClass(), "This operation is not supported yet."); //$NON-NLS-1$ //$NON-NLS-2$
24 return null;
25 }
26
27 }