com.sssw.srv.busobj
Class AgoRowInsertEvent
java.lang.Object
|
+--java.util.EventObject
|
+--com.sssw.srv.busobj.AgoBusinessObjectEvent
|
+--com.sssw.srv.busobj.AgoTableEvent
|
+--com.sssw.srv.busobj.AgoTableRowEvent
|
+--com.sssw.srv.busobj.AgoRowInsertEvent
- All Implemented Interfaces:
- Serializable
- public class AgoRowInsertEvent
- extends AgoTableRowEvent
The AgoRowInsertEvent provides access to an inserted row in an update transaction.
An instance of this class is passed to each row insert event fired by
the server. It also provides access to any other information about the
the current session, the SilverStream Server, or an AgaData object.
- See Also:
AgoTableRowEvent
,
AgiTableListener
, Serialized Form
Method Summary |
AgaRowData |
getRowData()
Return an AgaRowData object representing the row to be inserted. |
AgoRowInsertEvent
public AgoRowInsertEvent()
getRowData
public AgaRowData getRowData()
- Return an AgaRowData object representing the row to be inserted.
- Usage:
When writing code for the row insert event of a Table Listener
business object, this method allows the row being inserted to be inspected.
The AgaRowData object returned contains all the columns that contain data of the row
to be inserted.
- Example:
AgaRowData agData = evt.getRowData();
- See Also:
AgaRowData