Project

General

Profile

Download (1.29 KB) Statistics
| Branch: | Tag: | Revision:
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.viewers.IStructuredSelection;
13
import org.eclipse.jface.wizard.Wizard;
14
import org.eclipse.ui.IImportWizard;
15
import org.eclipse.ui.IWorkbench;
16

    
17
/**
18
 * @author pplitzner
19
 * @date 11.09.2013
20
 *
21
 */
22
public class SpecimenSearchWizard extends Wizard implements IImportWizard {
23

    
24
    /* (non-Javadoc)
25
     * @see org.eclipse.jface.wizard.Wizard#performFinish()
26
     */
27
    @Override
28
    public boolean performFinish() {
29
        return false;
30
    }
31

    
32
    /* (non-Javadoc)
33
     * @see org.eclipse.jface.wizard.Wizard#addPages()
34
     */
35
    @Override
36
    public void addPages() {
37
        addPage(new SpecimenSearchWizardPage("Specimen Search"));
38
        addPage(new SpecimenSearchResultWizardPage("Search Results"));
39
    }
40

    
41
    /* (non-Javadoc)
42
     * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
43
     */
44
    @Override
45
    public void init(IWorkbench workbench, IStructuredSelection selection) {
46
    }
47

    
48
}
(2-2/3)