Project

General

Profile

Download (1.29 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.Messages;
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 left
24
 * of the current selection or cursor position.
25
 *
26
 * @author Ben Stöver
27
 * @date 15.06.2015
28
 */
29
public class CutPherogramLeftHandler extends AbstractAlignmentEditorHandler {
30
    @Override
31
    public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
32
        String errorMessage = editor.cutPherogramLeft();
33
        if (errorMessage != null) {
34
            MessagingUtils.errorDialog(Messages.CutPherogramLeftHandler_CUT_FAILURE, this, errorMessage, TaxeditorMolecularPlugin.PLUGIN_ID, null, false);
35
        }
36
    }
37
}
(9-9/22)