Project

General

Profile

Download (969 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 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

    
10
package eu.etaxonomy.taxeditor.io.wizard;
11

    
12
import org.eclipse.jface.wizard.WizardPage;
13
import org.eclipse.swt.widgets.Composite;
14

    
15
/**
16
 * <p>JaxbImportSourceWizardPage class.</p>
17
 *
18
 * @author n.hoffmann
19
 * @created 24.06.2009
20
 * @version 1.0
21
 */
22
public class JaxbImportSourceWizardPage extends WizardPage {
23
	/**
24
	 * <p>Constructor for JaxbImportSourceWizardPage.</p>
25
	 *
26
	 * @param pageName a {@link java.lang.String} object.
27
	 */
28
	protected JaxbImportSourceWizardPage(String pageName) {
29
		super(pageName);
30
	}
31

    
32
	/* (non-Javadoc)
33
	 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
34
	 */
35
	/** {@inheritDoc} */
36
	public void createControl(Composite parent) {
37
	}
38
}
(22-22/30)