2010-09-22 19:04:10 +02:00
|
|
|
package com.google.refine.exporters;
|
2010-03-04 08:02:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
public interface Exporter {
|
2010-10-14 23:33:50 +02:00
|
|
|
/**
|
|
|
|
* @return MIME content type handled by exporter
|
|
|
|
*/
|
2010-03-04 08:02:03 +01:00
|
|
|
public String getContentType();
|
|
|
|
}
|