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 / PublishWizardXML.java
1 /**
2 *
3 */
4 package eu.etaxonomy.taxeditor.printpublisher.wizard;
5
6 import org.eclipse.ui.IExportWizard;
7
8 import eu.etaxonomy.cdm.print.out.xml.XMLOutputModule;
9
10
11
12 /**
13 * <p>PublishWizardXML class.</p>
14 *
15 * @author n.hoffmann
16 * @created Apr 1, 2010
17 * @version 1.0
18 */
19 public class PublishWizardXML extends AbstractPublishWizard implements IExportWizard{
20 /**
21 * <p>Constructor for PublishWizardXML.</p>
22 */
23 public PublishWizardXML() {
24 setOutputModule(new XMLOutputModule());
25 setWindowTitle("Publish XML");
26 }
27 }