Project

General

Profile

Download (1.04 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
package eu.etaxonomy.cdm.print.out.taxpub;
10

    
11
import java.io.File;
12

    
13
import org.apache.logging.log4j.LogManager;
14
import org.apache.logging.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
 * @since Aug 4, 2010
23
 */
24
public class TaxPubOutputModule extends PublishOutputModuleBase {
25

    
26
	private static final Logger logger = LogManager.getLogger(TaxPubOutputModule.class);
27

    
28
	@Override
29
    public String getOutputFileSuffix() {
30
		return "taxpub.xml";
31
	}
32

    
33
	@Override
34
	public void output(Document document, File exportFolder,
35
			IProgressMonitor progressMonitor) {
36
		super.output(document, exportFolder, progressMonitor);
37

    
38
		progressMonitor.subTask("Not implemented yet");
39
	}
40
}
    (1-1/1)