站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档

RowSetListener (JBoss J2EE API) - JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档


javax.sql
Interface RowSetListener

All Superinterfaces:
EventListener

public interface RowSetListener
extends EventListener

The RowSetListener interface is implemented by a component that wants to be notified when a significant event happens in the life of a RowSet


Method Summary
 void cursorMoved(RowSetEvent rowSetEvent)
          Called when a rowset's cursor is moved.
 void rowChanged(RowSetEvent rowSetEvent)
          Called when a row is inserted, updated, or deleted.
 void rowSetChanged(RowSetEvent rowSetEvent)
          Called when the rowset is changed.
 

Method Detail

cursorMoved

public void cursorMoved(RowSetEvent rowSetEvent)
Called when a rowset's cursor is moved.

Parameters:
rowSetEvent - - an object describing the event

rowChanged

public void rowChanged(RowSetEvent rowSetEvent)
Called when a row is inserted, updated, or deleted.

Parameters:
rowSetEvent - - an object describing the event

rowSetChanged

public void rowSetChanged(RowSetEvent rowSetEvent)
Called when the rowset is changed.

Parameters:
rowSetEvent - - an object describing the event


Copyright © 2002 JBoss Group, LLC. All Rights Reserved.