Project

General

Profile

Download (1.26 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2016 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.io.wizard;
11

    
12

    
13
import org.eclipse.jface.wizard.Wizard;
14

    
15

    
16

    
17
/**
18
 * A wizard to export a single read alignment from <i>CDM</i> using <i>JPhyloIO</i>.
19
 *
20
 * @author Ben Stöver
21
 * @date 23.06.2016
22
 */
23
public class ExportSingleReadAlignmentWizard extends Wizard {
24
    private ExportSingleReadAlignmentWizardModel model = new ExportSingleReadAlignmentWizardModel();
25

    
26
    private ExportSingleReadAlignmentWizardPage page;
27

    
28

    
29
    public ExportSingleReadAlignmentWizard() {
30
        setWindowTitle("Export single read alignment");  //TODO Use multi language message
31
    }
32

    
33

    
34
    public ExportSingleReadAlignmentWizardModel getModel() {
35
        return model;
36
    }
37

    
38

    
39
    @Override
40
    public void addPages() {
41
        page = new ExportSingleReadAlignmentWizardPage();
42
        addPage(page);
43
    }
44

    
45

    
46
    @Override
47
    public boolean performFinish() {
48
        return true;
49
        //TODO Add default extension to file, if necessary?
50
    }
51
}
(3-3/6)