public interface RowSetListener
Title: Structured Data Object Row
Description: An interface that must be implemented by a
component that wants to be notified when a significant
event happens in the life of a RowSet
object.
RowSet
object via the method RowSet.addRowSetListener
.
How a registered component implements this interface determines what it does
when it is notified of an event.
Copyright: Copyright (c) 2012
Company: StreamScape Technologies
Modifier and Type | Method and Description |
---|---|
void |
rowAdded(RowSetChangedEvent event)
Notifies registered listeners that new
Row is added to the
RowSet object. |
void |
rowDeleted(RowSetChangedEvent event)
Notifies registered listeners that the
Row is deleted from the
RowSet object. |
void |
rowUpdated(RowSetChangedEvent event)
Notifies registered listeners that
Row is changed in the
RowSet object. |
void rowUpdated(RowSetChangedEvent event)
Row
is changed in the
RowSet
object.
The source of the event can be retrieved with the method event.getRowSet()
.
The index of the modified row can be retrieved with the method event.getRowIndex()
.
The reference to the modified row can be retrieved with the method event.getRow()
.
event
- a RowSetChangedEvent
objectvoid rowAdded(RowSetChangedEvent event)
Row
is added to the
RowSet
object.
The source of the event can be retrieved with the method event.getRowSet()
.
The index of the new row can be retrieved with the method event.getRowIndex()
.
The reference to the added row can be retrieved with the method event.getRow()
.
event
- a RowSetChangedEvent
objectvoid rowDeleted(RowSetChangedEvent event)
Row
is deleted from the
RowSet
object.
The source of the event can be retrieved with the method event.getRowSet()
.
The deleted row reference can be retrieved with the method event.getRow()
.
event
- a RowSetChangedEvent
objectCopyright © 2015-2024 StreamScape Technologies. All rights reserved.