01: package org.dbunit.dataset.csv;
02:
03: import java.io.File;
04: import java.io.IOException;
05: import java.net.URL;
06: import java.util.List;
07:
08: import org.dbunit.dataset.csv.handlers.PipelineException;
09:
10: /**
11: * Created By: fede
12: * Date: 10-mar-2004
13: * Time: 15.50.13
14: *
15: * Last Checkin: $Author: dep4b $
16: * Date: $Date: 2005-05-06 23:04:06 +0200 (ven, 06 mag 2005) $
17: * Revision: $Revision: 480 $
18: */
19: public interface CsvParser {
20: List parse(File file) throws IOException, CsvParserException;
21:
22: List parse(URL url) throws IOException, CsvParserException;
23:
24: List parse(String csv) throws PipelineException,
25: IllegalInputCharacterException;
26: }
|