RowSetEvent (Java SE 10 & JDK 10 )
- java.lang.Object
-
- java.util.EventObject
-
- javax.sql.RowSetEvent
-
- All Implemented Interfaces:
Serializable
public class RowSetEvent extends EventObject
An
Eventobject generated when an event occurs to aRowSetobject. ARowSetEventobject is generated when a single row in a rowset is changed, the whole rowset is changed, or the rowset cursor moves.When an event occurs on a
RowSetobject, one of theRowSetListenermethods will be sent to all registered listeners to notify them of the event. AnEventobject is supplied to theRowSetListenermethod so that the listener can use it to find out whichRowSetobject is the source of the event.- Since:
- 1.4
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields declared in class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description RowSetEvent(RowSet source)Constructs a
RowSetEventobject initialized with the givenRowSetobject.
-
-
-
Constructor Detail
-
RowSetEvent
public RowSetEvent(RowSet source)
Constructs a
RowSetEventobject initialized with the givenRowSetobject.- Parameters:
source- theRowSetobject whose data has changed or whose cursor has moved- Throws:
IllegalArgumentException- ifsourceis null.
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.