3b1ca3ad89a3c270b3bcc859cfc7812bd1752f2b
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / featuretree / SelectFeatureTreeWizard.java
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.featuretree;
11
12 import org.eclipse.jface.wizard.Wizard;
13
14 /**
15 * <p>SelectFeatureTreeWizard class.</p>
16 *
17 * @author n.hoffmann
18 * @created Sep 17, 2010
19 * @version 1.0
20 */
21 public class SelectFeatureTreeWizard extends Wizard {
22
23 /** Constant <code>PAGE_NAME="Select Feature Tree"</code> */
24 public static final String PAGE_NAME = "Select Feature Tree";
25
26 /** {@inheritDoc} */
27 @Override
28 public void addPages() {
29 addPage(new SelectFeatureTreeWizardPage(PAGE_NAME));
30 }
31
32 /* (non-Javadoc)
33 * @see org.eclipse.jface.wizard.Wizard#performFinish()
34 */
35 /** {@inheritDoc} */
36 @Override
37 public boolean performFinish() {
38 return false;
39 }
40 }