All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.as400.util.servlet.RowDataEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.as400.util.servlet.RowDataEvent
- public class RowDataEvent
- extends EventObject
The RowDataEvent class represents a row data event.
-
ROW_ADDED
- Event ID indicating that a row has been added.
-
ROW_CHANGED
- Event ID indicating that a row has been changed.
-
ROW_REMOVED
- Event ID indicating that a row has been removed.
-
RowDataEvent(Object, int)
- Constructs a RowDataEvent object.
-
getID()
- Returns the identifier for this event.
ROW_ADDED
public static final int ROW_ADDED
- Event ID indicating that a row has been added.
ROW_CHANGED
public static final int ROW_CHANGED
- Event ID indicating that a row has been changed.
ROW_REMOVED
public static final int ROW_REMOVED
- Event ID indicating that a row has been removed.
RowDataEvent
public RowDataEvent(Object source,
int id)
- Constructs a RowDataEvent object. It uses the specified source and ID.
- Parameters:
- source - The object where the event originated.
- id - The event identifier.
getID
public int getID()
- Returns the identifier for this event.
- Returns:
- The identifier for this event.
All Packages Class Hierarchy This Package Previous Next Index