1 package sharin.csv.parser; 2 3 import java.io.Reader; 4 5 public interface CsvParser { 6 7 public String[][] parseAll(Reader reader); 8 9 }