Project

General

Profile

Download (1.23 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.molecular.handler;
10

    
11

    
12
import org.eclipse.core.commands.ExecutionEvent;
13
import org.eclipse.core.commands.ExecutionException;
14

    
15
import eu.etaxonomy.taxeditor.model.MessagingUtils;
16
import eu.etaxonomy.taxeditor.molecular.TaxeditorMolecularPlugin;
17
import eu.etaxonomy.taxeditor.molecular.editor.AlignmentEditor;
18

    
19

    
20

    
21
/**
22
 * Handler that cuts the base call sequence of a pherogram attached to the current sequence on the right
23
 * of the current selection or cursor position.
24
 *
25
 * @author BenStoever
26
 * @date 15.06.2015
27
 */
28
public class CutPherogramRightHandler extends AbstractAlignmentEditorHandler {
29
    @Override
30
    public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
31
        String errorMessage = editor.cutPherogramRight();
32
        if (errorMessage != null) {
33
            MessagingUtils.errorDialog("Unable to cut base call sequence", this, errorMessage, TaxeditorMolecularPlugin.PLUGIN_ID, null, false);
34
        }
35
    }
36
}
(10-10/21)