jpa.p1.sub
Interface SubRecordListEvent
- public interface SubRecordListEvent
This interface is the event counterpart to the SubRecordList
interface. This interface is implemented by the client application.
|
Method Summary |
void |
onAddRecord(java.lang.String record)
This method is invoked whenever a record is added to the list. |
void |
onDeleteRecord(java.lang.String record)
This method is invoked whenever a record is deleted from the list. |
void |
onImage(java.util.Vector vRecords)
This method is invoked when an initial image of the record list is received. |
onImage
public void onImage(java.util.Vector vRecords)
- This method is invoked when an initial image of the record list is received.
The record list is passed as a vector of String objects.
onAddRecord
public void onAddRecord(java.lang.String record)
- This method is invoked whenever a record is added to the list.
onDeleteRecord
public void onDeleteRecord(java.lang.String record)
- This method is invoked whenever a record is deleted from the list.