merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / OpenAlignmentEditorHandler.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 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 package eu.etaxonomy.taxeditor.editor.handler;
11
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.ui.PartInitException;
17
18 import eu.etaxonomy.taxeditor.editor.EditorUtil;
19 import eu.etaxonomy.taxeditor.editor.molecular.AlignmentEditor;
20 import eu.etaxonomy.taxeditor.editor.molecular.AlignmentEditorInput;
21 import eu.etaxonomy.taxeditor.model.MessagingUtils;
22
23
24
25 /**
26 * Opens the {@link AlignmentEditor}.
27 *
28 * @author pplitzner
29 * @date 04.08.2014
30 */
31 @Deprecated
32 public class OpenAlignmentEditorHandler extends AbstractHandler {
33 /* (non-Javadoc)
34 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
35 */
36 @Override
37 public Object execute(ExecutionEvent event) throws ExecutionException {
38 AlignmentEditorInput input = new AlignmentEditorInput(null); //TODO Does it make sense to start an empty editor?
39 try {
40 EditorUtil.open(input);
41 }
42 catch (PartInitException e) {
43 MessagingUtils.error(OpenAlignmentEditorHandler.class, "Could not open AlignmentEditor", e);
44 }
45 return null;
46 }
47 }