merge-update from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / OpenAlignmentEditor.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 import org.eclipse.core.commands.AbstractHandler;
13 import org.eclipse.core.commands.ExecutionEvent;
14 import org.eclipse.core.commands.ExecutionException;
15 import org.eclipse.ui.PartInitException;
16
17 import eu.etaxonomy.taxeditor.editor.EditorUtil;
18 import eu.etaxonomy.taxeditor.editor.molecular.AlignmentEditorInput;
19 import eu.etaxonomy.taxeditor.model.MessagingUtils;
20
21 /**
22 * @author pplitzner
23 * @date 04.08.2014
24 *
25 */
26 public class OpenAlignmentEditor extends AbstractHandler {
27
28 /* (non-Javadoc)
29 * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
30 */
31 @Override
32 public Object execute(ExecutionEvent event) throws ExecutionException {
33
34 AlignmentEditorInput input = new AlignmentEditorInput();
35 try {
36 EditorUtil.open(input);
37 } catch (PartInitException e) {
38 MessagingUtils.error(OpenAlignmentEditor.class, "Could not open AlignmentEditor", e);
39 }
40 return null;
41 }
42 }