Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.molecular / src / main / java / eu / etaxonomy / taxeditor / molecular / io / wizard / AbstractExportSingleReadAlignmentWizardPage.java
1 /**
2 * Copyright (C) 2016 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.io.wizard;
10
11
12 import org.eclipse.jface.resource.ImageDescriptor;
13 import org.eclipse.jface.wizard.WizardPage;
14
15
16
17 /**
18 * @author bstoe_01
19 * @date 18.11.2016
20 *
21 */
22 public abstract class AbstractExportSingleReadAlignmentWizardPage extends WizardPage {
23 public AbstractExportSingleReadAlignmentWizardPage(String pageName, String title, ImageDescriptor titleImage) {
24 super(pageName, title, titleImage);
25 }
26
27
28 public AbstractExportSingleReadAlignmentWizardPage(String pageName) {
29 super(pageName);
30 }
31
32
33 /**
34 * {@inheritDoc}
35 */
36 @Override
37 public ExportSingleReadAlignmentWizard getWizard() {
38 return (ExportSingleReadAlignmentWizard)super.getWizard(); // Would throw an exception, if this page is used within another wizard.
39 }
40 }