All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class netscape.peas.RowChangeEvent

java.lang.Object
   |
   +----netscape.peas.NotifyEvent
           |
           +----netscape.peas.RowChangeEvent

public class RowChangeEvent
extends NotifyEvent
A row change event is sent between objects supporting the Row interface.


Variable Index

 o COLUMN_INFO_CHANGED
 o UNKNOWN_TYPE
 o VALUE_CHANGED

Constructor Index

 o RowChangeEvent(int, String, Object, Object, RowProvider)
Construct a Row cange event give a slew of parameters.

Method Index

 o getColumnAffected()
Return the "columnAffected" attribute of this event.
 o getNewValue()
Get the "newValue" attribute for this RowChangEvent object.
 o getOldValue()
Get the "oldValue" attribute for this RowChangEvent object.
 o getRowProvider()
Return interface to RowProvider (part of Row interface).
 o getType()
Return the "type" attribute of this event.

Variables

 o UNKNOWN_TYPE
 public static final int UNKNOWN_TYPE
 o COLUMN_INFO_CHANGED
 public static final int COLUMN_INFO_CHANGED
 o VALUE_CHANGED
 public static final int VALUE_CHANGED

Constructors

 o RowChangeEvent
 public RowChangeEvent(int iType,
                       String sColumnAffected,
                       Object oOldValue,
                       Object oNewValue,
                       RowProvider oRowProvider)
Construct a Row cange event give a slew of parameters.

Methods

 o getType
 public int getType()
Return the "type" attribute of this event.

 o getColumnAffected
 public String getColumnAffected()
Return the "columnAffected" attribute of this event.

 o getRowProvider
 public RowProvider getRowProvider()
Return interface to RowProvider (part of Row interface). This interface may be used to obtain column information (names, types, etc.)

 o getOldValue
 public Object getOldValue()
Get the "oldValue" attribute for this RowChangEvent object.

 o getNewValue
 public Object getNewValue()
Get the "newValue" attribute for this RowChangEvent object.


All Packages  Class Hierarchy  This Package  Previous  Next  Index