Project

General

Profile

Download (340 Bytes) Statistics
| Branch: | Tag: | Revision:
1 83863ca3 a.babadshanjan
/**
2
* Copyright (C) 2008 EDIT
3
* European Distributed Institute of Taxonomy 
4
* http://www.e-taxonomy.eu
5
*/
6
7
package eu.etaxonomy.cdm.io.common;
8
9
/**
10 6b2cc8fd Andreas Müller
 * 
11 83863ca3 a.babadshanjan
 * @author a.babadshanjan
12
 * @created 17.11.2008
13
 */
14 6b2cc8fd Andreas Müller
public interface ICdmExporter<T extends IExportConfigurator> {
15 83863ca3 a.babadshanjan
16 6b2cc8fd Andreas Müller
	public abstract boolean invoke(T config);
17
	
18
	
19
	
20 83863ca3 a.babadshanjan
}