1 package org.dbunit.dataset.csv;2 3 import org.dbunit.dataset.csv.handlers.PipelineException;4 5 import java.io.File ;6 import java.io.IOException ;7 import java.util.List ;8 9 /**10 * Created By: fede11 * Date: 10-mar-2004 12 * Time: 15.50.1313 *14 * Last Checkin: $Author: fspinazzi $15 * Date: $Date: 2004/04/06 06:51:52 $16 * Revision: $Revision: 1.3 $17 */18 public interface CsvParser {19 List parse(File file) throws IOException , CsvParserException;20 21 List parse(String csv) throws PipelineException, IllegalInputCharacterException;22 }23