Project

General

Profile

Download (861 Bytes) Statistics
| Branch: | Tag: | Revision:
1 6b2cc8fd Andreas Müller
/**
2
* Copyright (C) 2007 EDIT
3 89102b8a Andreas Müller
* European Distributed Institute of Taxonomy
4 6b2cc8fd Andreas Müller
* http://www.e-taxonomy.eu
5 89102b8a Andreas Müller
*
6 6b2cc8fd Andreas Müller
* 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.io.jaxb;
11
12 89102b8a Andreas Müller
import java.io.File;
13
14 6b2cc8fd Andreas Müller
import org.apache.log4j.Logger;
15
16
import eu.etaxonomy.cdm.io.common.ExportStateBase;
17 00b93cdd Andreas Müller
import eu.etaxonomy.cdm.io.common.mapping.out.IExportTransformer;
18 6b2cc8fd Andreas Müller
19
/**
20
 * @author a.mueller
21 a88578ce Andreas Müller
 * @since 11.05.2009
22 6b2cc8fd Andreas Müller
 */
23 89102b8a Andreas Müller
public class JaxbExportState
24
        extends ExportStateBase<JaxbExportConfigurator, IExportTransformer, File>{
25
26
    @SuppressWarnings("unused")
27 6b2cc8fd Andreas Müller
	private static final Logger logger = Logger.getLogger(JaxbExportState.class);
28
29 89102b8a Andreas Müller
30
	public JaxbExportState(JaxbExportConfigurator config) {
31 6b2cc8fd Andreas Müller
		super(config);
32
	}
33
34
}