automated build configuration is on its way
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / io / wizard / AbstractExcelExportWizard.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.wizard;
12
13 import org.eclipse.jface.viewers.IStructuredSelection;
14 import org.eclipse.jface.wizard.Wizard;
15 import org.eclipse.ui.IExportWizard;
16 import org.eclipse.ui.IWorkbench;
17
18 /**
19 * <p>AbstractExcelExportWizard class.</p>
20 *
21 * @author n.hoffmann
22 * @created 15.06.2009
23 * @version 1.0
24 */
25 public class AbstractExcelExportWizard extends Wizard implements IExportWizard {
26
27 /* (non-Javadoc)
28 * @see org.eclipse.jface.wizard.Wizard#performFinish()
29 */
30 /** {@inheritDoc} */
31 @Override
32 public boolean performFinish() {
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 /** {@inheritDoc} */
40 public void init(IWorkbench workbench, IStructuredSelection selection) {
41
42 }
43 }