From bd12f8bff45250e5b210488c0d95f696690fcd91 Mon Sep 17 00:00:00 2001 From: Katja Luther Date: Wed, 30 Mar 2016 11:05:23 +0200 Subject: [PATCH 1/1] minor --- .../io/wizard/AbcdSourceSelectionPage.java | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/AbcdSourceSelectionPage.java diff --git a/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/AbcdSourceSelectionPage.java b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/AbcdSourceSelectionPage.java new file mode 100644 index 000000000..e8de3be58 --- /dev/null +++ b/eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/io/wizard/AbcdSourceSelectionPage.java @@ -0,0 +1,42 @@ +// $Id$ +/** +* Copyright (C) 2016 EDIT +* European Distributed Institute of Taxonomy +* http://www.e-taxonomy.eu +* +* The contents of this file are subject to the Mozilla Public License Version 1.1 +* See LICENSE.TXT at the top of this package for the full license terms. +*/ +package eu.etaxonomy.taxeditor.io.wizard; + +import java.net.URI; + +import org.eclipse.jface.wizard.WizardPage; +import org.eclipse.swt.widgets.Text; + +/** + * @author k.luther + * @date 29.03.2016 + * + */ +public abstract class AbcdSourceSelectionPage extends WizardPage { + + protected Text text_source; + + /** + * @param pageName + */ + protected AbcdSourceSelectionPage(String pageName) { + super(pageName); + + } + + public abstract URI getUri(); + + + + + + + +} -- 2.34.1