had to rename the packages to make them compliant with buckminster
[taxeditor.git] / eu.etaxonomy.taxeditor.printpublisher / src / main / java / eu / etaxonomy / taxeditor / printpublisher / wizard / PublishWizardPDF.java
diff --git a/eu.etaxonomy.taxeditor.printpublisher/src/main/java/eu/etaxonomy/taxeditor/printpublisher/wizard/PublishWizardPDF.java b/eu.etaxonomy.taxeditor.printpublisher/src/main/java/eu/etaxonomy/taxeditor/printpublisher/wizard/PublishWizardPDF.java
new file mode 100644 (file)
index 0000000..f0b724e
--- /dev/null
@@ -0,0 +1,34 @@
+// $Id$
+/**
+* Copyright (C) 2007 EDIT
+* European Distributed Institute of Taxonomy 
+* http://www.e-taxonomy.eu
+* 
+* The contents of this file are subject to the Mozilla Public License Version 1.1
+* See LICENSE.TXT at the top of this package for the full license terms.
+*/
+
+package eu.etaxonomy.taxeditor.printpublisher.wizard;
+
+import org.eclipse.ui.IExportWizard;
+
+import eu.etaxonomy.cdm.print.out.pdf.PdfOutputModule;
+
+/**
+ * <p>PublishWizardPDF class.</p>
+ *
+ * @author n.hoffmann
+ * @created Aug 4, 2010
+ * @version 1.0
+ */
+public class PublishWizardPDF extends AbstractPublishWizard implements
+               IExportWizard {
+       
+       /**
+        * <p>Constructor for PublishWizardPDF.</p>
+        */
+       public PublishWizardPDF(){
+               setOutputModule(new PdfOutputModule());
+               setWindowTitle("Publish PDF");
+       }
+}