Build 1.0_r1

javax.sql
Class RowSetEvent

java.lang.Object
  extended by java.util.EventObject
      extended by javax.sql.RowSetEvent
All Implemented Interfaces:
Serializable

public class RowSetEvent
extends EventObject
implements Serializable

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:

  1. A single row in the RowSet changes
  2. The whole set of data in the RowSet changes
  3. The 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.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
RowSetEvent(RowSet theSource)
          Creates a RowSetEvent object containing a reference to the RowSet object that generated the event.
 
Method Summary
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RowSetEvent

public RowSetEvent(RowSet theSource)
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.

Parameters:
theSource - the RowSet which generated the event

Build 1.0_r1

Please submit a feedback, bug or feature