Revert last change
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / main / java / eu / etaxonomy / taxeditor / molecular / handler / ToggleShowPherogramBaseCallLinesHandler.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.molecular.handler;
11
12
13 import info.bioinfweb.libralign.pherogram.PherogramComponent;
14
15 import org.eclipse.core.commands.ExecutionEvent;
16 import org.eclipse.core.commands.ExecutionException;
17
18
19
20 /**
21 * @author BenStoever
22 * @date 23.06.2015
23 *
24 */
25 public class ToggleShowPherogramBaseCallLinesHandler extends AbstractPherogramComponentHandler {
26 @Override
27 public void doExecute(ExecutionEvent event, PherogramComponent component) throws ExecutionException {
28 component.getFormats().toggleShowBaseCallLines();
29 }
30 }