Project

General

Profile

Download (905 Bytes) 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 info.bioinfweb.libralign.pherogram.PherogramComponent;
13

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

    
17

    
18

    
19
/**
20
 * Switches between the quality output types available for components displaying pherograms.
21
 *
22
 * @author Ben Stöver
23
 * @date 19.06.2015
24
 */
25
public class ChangePherogramQualityOutputType extends AbstractPherogramComponentHandler {
26
    @Override
27
    public void doExecute(ExecutionEvent event, PherogramComponent component) throws ExecutionException {
28
        component.getFormats().changeQualityOutputType();
29
    }
30
}
(7-7/21)