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.


Variable Index

 o ROW_ADDED
Event ID indicating that a row has been added.
 o ROW_CHANGED
Event ID indicating that a row has been changed.
 o ROW_REMOVED
Event ID indicating that a row has been removed.

Constructor Index

 o RowDataEvent(Object, int)
Constructs a RowDataEvent object.

Method Index

 o getID()
Returns the identifier for this event.

Variables

 o ROW_ADDED
 public static final int ROW_ADDED
Event ID indicating that a row has been added.

 o ROW_CHANGED
 public static final int ROW_CHANGED
Event ID indicating that a row has been changed.

 o ROW_REMOVED
 public static final int ROW_REMOVED
Event ID indicating that a row has been removed.

Constructors

 o 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.

Methods

 o 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