com.ibm.as400.util.servlet
Class RowDataEvent

java.lang.Object
  extended by java.util.EventObject
      extended by com.ibm.as400.util.servlet.RowDataEvent
All Implemented Interfaces:
Serializable

public class RowDataEvent
extends EventObject

The RowDataEvent class represents a row data event.

See Also:
Serialized Form

Field Summary
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.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
RowDataEvent(Object source, int id)
          Constructs a RowDataEvent object.
 
Method Summary
 int getID()
          Returns the identifier for this event.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

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
Constructor Detail

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.
Method Detail

getID

public int getID()
Returns the identifier for this event.

Returns:
The identifier for this event.