org.opengts.dbtools
Interface DBRecordListener<gDBR extends DBRecord>

All Known Implementing Classes:
DBFactory

public interface DBRecordListener<gDBR extends DBRecord>

DBRecordListener callback listener for DBRecord update/insert


Method Summary
 void recordDidInsert(gDBR rcd)
          Callback after record has been be inserted into the table
 void recordDidUpdate(gDBR rcd)
          Callback after record has been be updated in the table
 void recordWillInsert(gDBR rcd)
          Callback when record is about to be inserted into the table
 void recordWillUpdate(gDBR rcd)
          Callback when record is about to be updated in the table
 

Method Detail

recordWillInsert

void recordWillInsert(gDBR rcd)
Callback when record is about to be inserted into the table

Parameters:
rcd - The record about to be inserted

recordDidInsert

void recordDidInsert(gDBR rcd)
Callback after record has been be inserted into the table

Parameters:
rcd - The record that was just inserted

recordWillUpdate

void recordWillUpdate(gDBR rcd)
Callback when record is about to be updated in the table

Parameters:
rcd - The record about to be updated

recordDidUpdate

void recordDidUpdate(gDBR rcd)
Callback after record has been be updated in the table

Parameters:
rcd - The record that was just updated