cleanup
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / OpenParentHandler.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.editor.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
18 /**
19 * <p>OpenParentHandler class.</p>
20 *
21 * @author n.hoffmann
22 * @created 03.06.2009
23 * @version 1.0
24 */
25 public class OpenParentHandler extends AbstractHandler implements IHandler {
26
27 /** {@inheritDoc} */
28 public Object execute(ExecutionEvent event) throws ExecutionException {
29 throw new RuntimeException("Open parent not supported anymore");
30 // Taxon parent = EditorUtil.getActiveMultiPageTaxonEditor().getTaxon().getTaxonomicParent();
31 //
32 // if(parent != null){
33 // try {
34 // EditorUtil.openTaxonNode(parent.getUuid());
35 // } catch (PartInitException e) {
36 // throw new RuntimeException("Error opening parent taxon", e);
37 // } catch (Exception e) {
38 // MessagingUtils.warningDialog("Could not create Taxon", this, e.getMessage());
39 // }
40 // }
41 //
42 // return null;
43 }
44 }