Merge branch 'develop' into LibrAlign
[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
10 package eu.etaxonomy.taxeditor.printpublisher.wizard;
11
12 import org.eclipse.ui.IExportWizard;
13
14 import eu.etaxonomy.cdm.print.out.pdf.PdfOutputModule;
15
16 /**
17 * <p>PublishWizardPDF class.</p>
18 *
19 * @author n.hoffmann
20 * @created Aug 4, 2010
21 * @version 1.0
22 */
23 public class PublishWizardPDF extends AbstractPublishWizard implements
24 IExportWizard {
25
26 /**
27 * <p>Constructor for PublishWizardPDF.</p>
28 */
29 public PublishWizardPDF(){
30 setOutputModule(new PdfOutputModule());
31 setWindowTitle("Publish PDF");
32 }
33 }