p2izing the editor
[taxeditor.git] / eclipseprojects / eu.etaxonomy.taxeditor / src / eu / etaxonomy / taxeditor / io / InputWizard.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.io;
11
12 import org.apache.log4j.Logger;
13 import org.eclipse.jface.wizard.Wizard;
14
15 /**
16 * @author p.ciardelli
17 * @created 05.11.2008
18 * @version 1.0
19 */
20 public class InputWizard extends Wizard {
21 private static final Logger logger = Logger.getLogger(InputWizard.class);
22
23 /* (non-Javadoc)
24 * @see org.eclipse.jface.wizard.Wizard#performFinish()
25 */
26 @Override
27 public boolean performFinish() {
28 // TODO Auto-generated method stub
29 return false;
30 }
31
32 // public void addPages() {
33 // addPage();
34 // }
35 }