prefuse.data.io
Interface TableReadListener


public interface TableReadListener

Callback interface used by AbstractTextTableReader instances to be used when a table value is encountered in parsing.

Author:
jeffrey heer

Method Summary
 void readValue(int line, int col, java.lang.String value)
          Notification that a text string representing a table value has been read.
 

Method Detail

readValue

void readValue(int line,
               int col,
               java.lang.String value)
               throws DataParseException
Notification that a text string representing a table value has been read. It is the job of this callback to then appropriately take action, such as parse and store the value.

Parameters:
line - the line of the file at which the value was encountered
col - the table column index at which the value was encountered
value - the text string representing the data value
Throws:
DataParseException - if an error occurs while parsing the data


Copyright © 2007 Regents of the University of California