Project

General

Profile

Download (736 Bytes) Statistics
| Branch: | Tag: | Revision:
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.io.wizard;
10

    
11
import org.eclipse.jface.wizard.WizardPage;
12
import org.eclipse.swt.widgets.Text;
13

    
14
import eu.etaxonomy.cdm.common.URI;
15

    
16
/**
17
 * @author k.luther
18
 * @date 29.03.2016
19
 */
20
public abstract class AbcdSourceSelectionPage extends WizardPage {
21

    
22
    protected Text text_source;
23

    
24
    /**
25
     * @param pageName
26
     */
27
    protected AbcdSourceSelectionPage(String pageName) {
28
        super(pageName);
29
    }
30

    
31
    public abstract URI getUri();
32
}
(3-3/30)