Dependency refactoring
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / main / java / eu / etaxonomy / taxeditor / molecular / handler / UpdateConsensusSequenceHandler.java
1 /**
2 * Copyright (C) 2007 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.molecular.editor.AlignmentEditor;
16
17
18
19
20 public class UpdateConsensusSequenceHandler extends AbstractAlignmentEditorHandler {
21 @Override
22 public void doExecute(ExecutionEvent event, AlignmentEditor editor) throws ExecutionException {
23 editor.updateConsensusSequence();
24 }
25 }