borland Packages  Class Hierarchy  dx.dataset Package 

LoadRowListener interface

java.util.EventListener
   +----com.borland.dx.dataset.LoadRowListener

About the LoadRowListener interface

Methods  
If a class implementing this interface is wired to a StorageDataSet by calling the StorageDataSet.addLoadRowListener() method, then the loadRow implementation will be called for every row that is loaded into the StorageDataSet.

Rows are "loaded" into a StorageDataSet by calling StorageDataSet.loadRow().

StorageDataSet.Provider implementations and DataSetData use StorageDataSet.loadRow() to quick populate a StorageDataSet.


LoadRowListener methods

Methods defined in this interface


LoadRowListener methods

loadRow(int, com.borland.dx.dataset.ReadWriteRow)

  public void loadRow(int status, ReadWriteRow row)

This method is called for each row that is loaded into a StorageDataSet.

Parameters:

status
Status of the row. Pre-defined constants for this property are listed under RowStatus variables.
row
The row about to be loaded into the StorageDataSet.