java.lang.Object | ||
↳ | java.util.EventObject | |
↳ | javax.sql.RowSetEvent |
An event which is sent when specific events happen to a
RowSet
object. The events are sent to inform registered listeners that changes have
occurred to the
RowSet
. The events covered are:
RowSet
changes.
RowSet
changes.
RowSet
cursor position changes.
The event contains a reference to the
RowSet
object which generated
the message so that the listeners can extract whatever information they need
from that reference.
[Expand]
Inherited Fields
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.EventObject
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
|
Creates a
RowSetEvent
object containing a reference to the
RowSet
object that generated the event.
|
[Expand]
Inherited Methods
|
|||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.util.EventObject
|
|||||||||||
From class
java.lang.Object
|
Creates a
RowSetEvent
object containing a reference to the
RowSet
object that generated the event. Information about the
changes that have occurred to the
RowSet
can be extracted from
the
RowSet
using one or more of the query methods available on
the
RowSet
.
theSource |
the
RowSet
which generated the event.
|
---|