org.objectweb.telosys.dal.csv
Interface ICSVHandler


public interface ICSVHandler

CSV parser handler interface


Method Summary
 void commentLine(int no, java.lang.String sLine)
          Called for each comment line
 void dataLine(int no, java.lang.String sLine, java.lang.String[] fields)
          Called for each data line
 void end()
          Called when the parsing ends
 void start()
          Called when the parsing starts
 void voidLine(int no)
          Called for each void line
 

Method Detail

start

public void start()
Called when the parsing starts


dataLine

public void dataLine(int no,
                     java.lang.String sLine,
                     java.lang.String[] fields)
Called for each data line

Parameters:
no -
sLine -
fields -

commentLine

public void commentLine(int no,
                        java.lang.String sLine)
Called for each comment line

Parameters:
no -
sLine -

voidLine

public void voidLine(int no)
Called for each void line

Parameters:
no -

end

public void end()
Called when the parsing ends