2832fcca67128f0110b121d441b59713a0aa8b0e
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / specimenSearch / SpecimenSearchResultWizardPage.java
1 // $Id$
2 /**
3 * Copyright (C) 2013 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 package eu.etaxonomy.taxeditor.io.wizard.specimenSearch;
11
12 import org.eclipse.jface.wizard.WizardPage;
13 import org.eclipse.swt.widgets.Composite;
14
15 import eu.etaxonomy.taxeditor.ui.campanula.specimenSearch.SpecimenSearchResultsController;
16
17 /**
18 * @author pplitzner
19 * @date 12.09.2013
20 *
21 */
22 public class SpecimenSearchResultWizardPage extends WizardPage {
23
24 /**
25 * @param pageName
26 */
27 protected SpecimenSearchResultWizardPage(String pageName) {
28 super(pageName);
29 }
30
31 /* (non-Javadoc)
32 * @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
33 */
34 @Override
35 public void createControl(Composite parent) {
36 setControl(new SpecimenSearchResultsController(parent).getComposite());
37 }
38
39 }