com.ibm.as400.util.servlet
Class RowDataEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.ibm.as400.util.servlet.RowDataEvent
-
- All Implemented Interfaces:
- java.io.Serializable
public class RowDataEvent extends java.util.EventObject
The RowDataEvent class represents a row data event.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static int
ROW_ADDED
Event ID indicating that a row has been added.static int
ROW_CHANGED
Event ID indicating that a row has been changed.static int
ROW_REMOVED
Event ID indicating that a row has been removed.
-
Constructor Summary
Constructors Constructor and Description RowDataEvent(java.lang.Object source, int id)
Constructs a RowDataEvent object.
-
Method Summary
Methods Modifier and Type Method and Description int
getID()
Returns the identifier for this event.
-
-
-
Field Detail
-
ROW_ADDED
public static final int ROW_ADDED
Event ID indicating that a row has been added.- See Also:
- Constant Field Values
-
ROW_CHANGED
public static final int ROW_CHANGED
Event ID indicating that a row has been changed.- See Also:
- Constant Field Values
-
ROW_REMOVED
public static final int ROW_REMOVED
Event ID indicating that a row has been removed.- See Also:
- Constant Field Values
-
-