* @param csvParser The parser to use to interpret delimited data.
* @param tableName The name to give to this table.
* @param inputStreamSource The resource to obtain data from.
*/
public CsvTable(CsvParser csvParser, String tableName, InputStreamSource inputStreamSource) {
new CsvReader(csvParser).readLines(
new InputStreamReaderSource(inputStreamSource),
new HeaderCallback(tableName),
new DataCallback()
);
}