nrs.util
Interface CSVListener

All Known Implementing Classes:
CSVParser

public interface CSVListener

Interface implemented by classes interested in receiving CSV values from the CSVParser class.

Author:
Copyright © 2004 Nick Sydenham <nsydenham@yahoo.co.uk>

Method Summary
 void newCSVValue(java.lang.String value, int lineNum)
          A new CSV value has been found
 void noMoreCSVValues()
          Finished parsing the input
 

Method Detail

newCSVValue

public void newCSVValue(java.lang.String value,
                        int lineNum)
A new CSV value has been found

Parameters:
value - the new value
lineNum - line number, starting from 0

noMoreCSVValues

public void noMoreCSVValues()
Finished parsing the input



Copyright © 2004-2005 Nick Sydenham <nsydenham@yahoo.co.uk>