Most visited

Recently visited

Added in API level 1

RowSetEvent

public class RowSetEvent
extends EventObject

java.lang.Object
   ↳ java.util.EventObject
     ↳ javax.sql.RowSetEvent


Event对象发生事件时生成的RowSet对象。 当行集中的单个行更改,整个行集更改或行集光标移动时,会生成一个RowSetEvent对象。

当一个事件发生在RowSet对象上时,其中一个RowSetListener方法将被发送给所有注册的监听者,以通知他们事件。 一个Event对象被提供给RowSetListener方法使听者可以用它来找出哪个RowSet对象是事件的来源。

Summary

Inherited fields

From class java.util.EventObject

Public constructors

RowSetEvent(RowSet source)

构造一个用给定的 RowSetEvent对象初始化的 RowSet对象。

Inherited methods

From class java.util.EventObject
From class java.lang.Object

Public constructors

RowSetEvent

Added in API level 1
RowSetEvent (RowSet source)

构造一个用给定的 RowSetEvent对象初始化的 RowSet对象。

Parameters
source RowSet: the RowSet object whose data has changed or whose cursor has moved
Throws
IllegalArgumentException if source is null.

Hooray!