Project

General

Profile

Download (741 Bytes) 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.io.wizard;
11

    
12
import java.net.URI;
13

    
14
import org.eclipse.jface.wizard.WizardPage;
15
import org.eclipse.swt.widgets.Text;
16

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

    
24
    protected Text text_source;
25

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

    
32
    }
33

    
34
    public abstract URI getUri();
35

    
36

    
37

    
38

    
39

    
40

    
41

    
42
}
(3-3/26)