Project

General

Profile

Download (1022 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.databaseAdmin.wizard;
10

    
11
import org.eclipse.jface.wizard.Wizard;
12

    
13
import eu.etaxonomy.cdm.io.specimen.abcd206.in.Abcd206ImportConfigurator;
14
import eu.etaxonomy.taxeditor.io.wizard.AbcdImportConfiguratorWizardPage;
15

    
16
/**
17
 * @author k.luther
18
 * @date 19.04.2017
19
 *
20
 */
21
public class ImportPreferencesWizard extends Wizard {
22

    
23
    public AbcdImportConfiguratorWizardPage configPage;
24

    
25
    public ImportPreferencesWizard() {
26
        setWindowTitle("Abcd Import Configuration Wizard");
27
        configPage = AbcdImportConfiguratorWizardPage.createPreferencePage(Abcd206ImportConfigurator.NewInstance(null, null));
28

    
29
    }
30

    
31
    /**
32
     * {@inheritDoc}
33
     */
34
    @Override
35
    public boolean performFinish() {
36

    
37
        return false;
38
    }
39
}
(6-6/11)