automated build configuration is on its way
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / JaxbImportSourceWizardPage.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 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
11 package eu.etaxonomy.taxeditor.io.wizard;
12
13 import org.eclipse.jface.wizard.WizardPage;
14 import org.eclipse.swt.widgets.Composite;
15
16 /**
17 * <p>JaxbImportSourceWizardPage class.</p>
18 *
19 * @author n.hoffmann
20 * @created 24.06.2009
21 * @version 1.0
22 */
23 public class JaxbImportSourceWizardPage extends WizardPage {
24 /**
25 * <p>Constructor for JaxbImportSourceWizardPage.</p>
26 *
27 * @param pageName a {@link java.lang.String} object.
28 */
29 protected JaxbImportSourceWizardPage(String pageName) {
30 super(pageName);
31 }
32
33 /* (non-Javadoc)
34 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
35 */
36 /** {@inheritDoc} */
37 public void createControl(Composite parent) {
38 }
39 }