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

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

Parameters:
rowSetEvent - - an object describing the event

rowChanged

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

Parameters:
rowSetEvent - - an object describing the event

rowSetChanged

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.