Project

General

Profile

Download (806 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.taxeditor.newWizards;
5

    
6
import org.eclipse.jface.wizard.WizardPage;
7
import org.eclipse.swt.SWT;
8
import org.eclipse.swt.widgets.Composite;
9

    
10
/**
11
 * <p>NewAuthorWizardPage class.</p>
12
 *
13
 * @author n.hoffmann
14
 * @created Apr 16, 2010
15
 * @version 1.0
16
 */
17
public class NewAuthorWizardPage extends WizardPage {
18

    
19
	/**
20
	 * <p>Constructor for NewAuthorWizardPage.</p>
21
	 *
22
	 * @param pageName a {@link java.lang.String} object.
23
	 */
24
	protected NewAuthorWizardPage(String pageName) {
25
		super(pageName);
26
	}
27

    
28
	/* (non-Javadoc)
29
	 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
30
	 */
31
	/** {@inheritDoc} */
32
	public void createControl(Composite parent) {
33
		Composite container = new Composite(parent, SWT.NULL);
34
		
35
		setControl(container);
36
	}
37

    
38
}
(4-4/8)