Project

General

Profile

Download (977 Bytes) Statistics
| Branch: | Tag: | Revision:
1 13862f35 n.hoffmann
// $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 3be6ef3e n.hoffmann
 * <p>JaxbImportSourceWizardPage class.</p>
18
 *
19 13862f35 n.hoffmann
 * @author n.hoffmann
20
 * @created 24.06.2009
21
 * @version 1.0
22
 */
23
public class JaxbImportSourceWizardPage extends WizardPage {
24
	/**
25 3be6ef3e n.hoffmann
	 * <p>Constructor for JaxbImportSourceWizardPage.</p>
26
	 *
27
	 * @param pageName a {@link java.lang.String} object.
28 13862f35 n.hoffmann
	 */
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 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
37 13862f35 n.hoffmann
	public void createControl(Composite parent) {
38
	}
39
}