Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / AbstractExcelExportWizard.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.wizard;
11
12 import org.eclipse.jface.viewers.IStructuredSelection;
13 import org.eclipse.jface.wizard.Wizard;
14 import org.eclipse.ui.IExportWizard;
15 import org.eclipse.ui.IWorkbench;
16
17 /**
18 * <p>AbstractExcelExportWizard class.</p>
19 *
20 * @author n.hoffmann
21 * @created 15.06.2009
22 * @version 1.0
23 */
24 public class AbstractExcelExportWizard extends Wizard implements IExportWizard {
25
26 /* (non-Javadoc)
27 * @see org.eclipse.jface.wizard.Wizard#performFinish()
28 */
29 /** {@inheritDoc} */
30 @Override
31 public boolean performFinish() {
32 return false;
33 }
34
35 /* (non-Javadoc)
36 * @see org.eclipse.ui.IWorkbenchWizard#init(org.eclipse.ui.IWorkbench, org.eclipse.jface.viewers.IStructuredSelection)
37 */
38 /** {@inheritDoc} */
39 public void init(IWorkbench workbench, IStructuredSelection selection) {
40
41 }
42 }