Project

General

Profile

Download (1.1 KB) Statistics
| Branch: | Tag: | Revision:
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.cdm.print.out.taxpub;
11

    
12
import java.io.File;
13

    
14
import org.apache.log4j.Logger;
15
import org.jdom.Document;
16

    
17
import eu.etaxonomy.cdm.common.monitor.IProgressMonitor;
18
import eu.etaxonomy.cdm.print.out.PublishOutputModuleBase;
19

    
20
/**
21
 * @author n.hoffmann
22
 * @created Aug 4, 2010
23
 * @version 1.0
24
 */
25
public class TaxPubOutputModule extends PublishOutputModuleBase {
26
	private static final Logger logger = Logger
27
			.getLogger(TaxPubOutputModule.class);
28

    
29
	/* (non-Javadoc)
30
	 * @see eu.etaxonomy.printpublisher.out.IPublishOutputModule#getOutputFileSuffix()
31
	 */
32
	public String getOutputFileSuffix() {
33
		return "taxpub.xml";
34
	}
35
	
36
	@Override
37
	public void output(Document document, File exportFolder,
38
			IProgressMonitor progressMonitor) {
39
		super.output(document, exportFolder, progressMonitor);
40
		
41
		progressMonitor.subTask("Not implemented yet");
42
	}
43
}
    (1-1/1)