Merge branch 'release/5.19.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.printpublisher / src / main / java / eu / etaxonomy / taxeditor / printpublisher / wizard / PublishWizardTaxPub.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 package eu.etaxonomy.taxeditor.printpublisher.wizard;
10
11 import org.eclipse.ui.IExportWizard;
12
13 import eu.etaxonomy.cdm.print.out.taxpub.TaxPubOutputModule;
14
15 /**
16 * <p>PublishWizardTaxPub class.</p>
17 *
18 * @author n.hoffmann
19 * @created Aug 4, 2010
20 */
21 public class PublishWizardTaxPub extends AbstractPublishWizard implements
22 IExportWizard {
23
24 public PublishWizardTaxPub(){
25 setOutputModule(new TaxPubOutputModule());
26 setWindowTitle("Publish TaxPub");
27 }
28 }