Merge branch 'release/5.19.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.printpublisher / src / main / java / eu / etaxonomy / taxeditor / printpublisher / wizard / PublishWizardPDF.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.pdf.PdfOutputModule;
14
15 /**
16 * <p>PublishWizardPDF class.</p>
17 *
18 * @author n.hoffmann
19 * @created Aug 4, 2010
20 */
21 public class PublishWizardPDF extends AbstractPublishWizard implements
22 IExportWizard {
23
24 /**
25 * <p>Constructor for PublishWizardPDF.</p>
26 */
27 public PublishWizardPDF(){
28 setOutputModule(new PdfOutputModule());
29 setWindowTitle("Publish PDF");
30 }
31 }