SilverStream
Application Server 3.5

com.sssw.rt.event
Interface AgiRowCursorListener

All Known Implementing Classes:
AgoBindingManager

public interface AgiRowCursorListener

An AgiRowCursorListener event is fired whenever the row pointed to by the cursor is changed or data within the row changes.


Method Summary
 void cursorChanged(AgoPropertyChangeEvent evt)
          This method is invoked when a navigation operation (e.g.
 void cursorPreChange(AgoPropertyChangeEvent evt)
          This method is invoked just before a navigation operation (e.g., gotoNext) to allow last-minute operations before the current row disappears.
 

Method Detail

cursorPreChange

public void cursorPreChange(AgoPropertyChangeEvent evt)
This method is invoked just before a navigation operation (e.g., gotoNext) to allow last-minute operations before the current row disappears.
Parameters:
evt - an instance of an AgoPropertyChangeEvent
Usage:
  • evt.getRowCursor() returns null
  • evt.getColumnIndex() returns -1
  • evt.getPropertyName() returns null
  • evt.getOldValue() returns null
  • evt.getNewValue() returns null

cursorChanged

public void cursorChanged(AgoPropertyChangeEvent evt)
This method is invoked when a navigation operation (e.g. gotoNext) causes the row cursor point to a different row.
Parameters:
evt - an instance of an AgoPropertyChangeEvent.
Usage:
  • evt.getRowCursor() returns null.
  • evt.getColumnIndex() returns -1.
  • evt.getPropertyName() returns null.
  • evt.getOldValue() returns null.
  • evt.getNewValue() returns null.

SilverStream
Application Server 3.5