finalizing preferred refactoring
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / io / TcsImportWizard.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 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
11 package eu.etaxonomy.taxeditor.io;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.jface.viewers.IStructuredSelection;
15 import org.eclipse.jface.wizard.Wizard;
16 import org.eclipse.ui.IImportWizard;
17 import org.eclipse.ui.IWorkbench;
18
19 /**
20 * @author n.hoffmann
21 * @created 15.06.2009
22 * @version 1.0
23 */
24 public class TcsImportWizard extends Wizard implements IImportWizard{
25 private static final Logger logger = Logger.getLogger(TcsImportWizard.class);
26
27 /* (non-Javadoc)
28 * @see org.eclipse.jface.wizard.Wizard#performFinish()
29 */
30 @Override
31 public boolean performFinish() {
32 // TODO Auto-generated method stub
33 return false;
34 }
35
36 /* (non-Javadoc)
37 * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
38 */
39 public void init(IWorkbench workbench, IStructuredSelection selection) {
40 // TODO Auto-generated method stub
41
42 }
43
44 }