Project

General

Profile

Download (1.24 KB) Statistics
| Branch: | Tag: | Revision:
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.molecular.handler;
11

    
12

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

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

    
20

    
21

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