| javax.sql.RowSetListener | 
An interface used to send notification of events occurring in the context of
 a RowSet. To receive the notification events, an object must
 implement the RowSetListener interface and then register itself with
 the RowSet of interest using the
 addRowSetListener(RowSetListener) method.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Notifies the listener that the  RowSet's cursor intheEvent.getSourcehas moved. | |||||||||||
| Notifies the listener that one of the  RowSet's rows intheEvent.getSourcehas changed. | |||||||||||
| Notifies the listener that the  RowSet's entire contents intheEvent.getSourcehave been updated (an example is the execution
 of a command which retrieves new data from the database). | |||||||||||
Notifies the listener that the RowSet's cursor in theEvent.getSource has moved.
| theEvent | a RowSetEventthat contains information about theRowSetinvolved. This information can be used to
            retrieve information about the change, such as the updated
            data values. | 
|---|
Notifies the listener that one of the RowSet's rows in theEvent.getSource has changed.
| theEvent | a RowSetEventthat contains information about theRowSetinvolved. This information can be used to
            retrieve information about the change, such as the new cursor
            position. | 
|---|
Notifies the listener that the RowSet's entire contents in
 theEvent.getSource have been updated (an example is the execution
 of a command which retrieves new data from the database).
| theEvent | a RowSetEventthat contains information about theRowSetinvolved. This information can be used to
            retrieve information about the change, such as the updated
            rows of data. | 
|---|