305d63edfabdfedc07e79e262da3a5cc0dbc41b4
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / handler / alignmenteditor / CutPherogramLeftHandler.java
1 // $Id$
2 /**
3 * Copyright (C) 2015 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.alignmenteditor;
11
12
13 import org.eclipse.core.commands.ExecutionEvent;
14 import org.eclipse.core.commands.ExecutionException;
15
16 import eu.etaxonomy.taxeditor.editor.molecular.AlignmentEditor;
17 import eu.etaxonomy.taxeditor.model.MessagingUtils;
18
19
20
21 /**
22 * Handler that cuts the base call sequence of a pherogram attached to the current sequence on the left
23 * of the current selection or cursor position.
24 *
25 * @author Ben Stöver
26 * @date 15.06.2015
27 */
28 public class CutPherogramLeftHandler extends AbstractAlignmentEditorHandler {
29 @Override
30 public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
31 String errorMessage = editor.cutPherogramLeft();
32 if (errorMessage != null) {
33 MessagingUtils.errorDialog("Unable to cut base call sequence", this, errorMessage, "eu.etaxonomy.taxeditor.editor", null, false); //TODO set pluginID
34 }
35 }
36 }