ref #6190 removing svn property place holder in first line of code - java files
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / AbcdSourceSelectionPage.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.io.wizard;
10
11 import java.net.URI;
12
13 import org.eclipse.jface.wizard.WizardPage;
14 import org.eclipse.swt.widgets.Text;
15
16 /**
17 * @author k.luther
18 * @date 29.03.2016
19 *
20 */
21 public abstract class AbcdSourceSelectionPage extends WizardPage {
22
23 protected Text text_source;
24
25 /**
26 * @param pageName
27 */
28 protected AbcdSourceSelectionPage(String pageName) {
29 super(pageName);
30
31 }
32
33 public abstract URI getUri();
34
35
36
37
38
39
40
41 }