ariba.util.io
Interface CSVConsumer

All Known Subinterfaces:
StringCSVConsumer
All Known Implementing Classes:
AWTCSVDataSource, CSVReaderSelect, FirstTokenKeyCSVConsumer, Mapping

public interface CSVConsumer

The CSVReader calls through this interface to dispose of the lines that it reads. CSVReader was originally written so that the method called back was in a subclass. As a transition step, CSVReader itself implements this interface so that subclasses can be the consumer.


Method Summary
 void consumeLineOfTokens(java.lang.String path, int lineNumber, java.util.List line)
          Called once per CSV line read.
 

Method Detail

consumeLineOfTokens

void consumeLineOfTokens(java.lang.String path,
                         int lineNumber,
                         java.util.List line)
Called once per CSV line read.

Parameters:
path - the CSV source file
lineNumber - the current line being reported, 1-based.
line - a List of tokens parsed from a one line in the file


AribaWeb User Interface Development Framework
Copyright © 2000-2014 Ariba, Inc. All Rights Reserved.