All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.as400.access.RecordDescriptionListener

public interface RecordDescriptionListener
extends EventListener
The RecordDescriptionListener interface provides the interface that must be implemented to handle RecordDescriptionEvent objects that are fired by the record description classes, RecordFormat and Record.


Method Index

 o fieldDescriptionAdded(RecordDescriptionEvent)
Invoked when a field description has been added to a RecordFormat object.
 o fieldModified(RecordDescriptionEvent)
Invoked when a field value has been changed in a Record object.
 o keyFieldDescriptionAdded(RecordDescriptionEvent)
Invoked when a key field description has been added to a RecordFormat object.

Methods

 o fieldDescriptionAdded
 public abstract void fieldDescriptionAdded(RecordDescriptionEvent event)
Invoked when a field description has been added to a RecordFormat object.

Parameters:
event - The event fired.
See Also:
addFieldDescription
 o fieldModified
 public abstract void fieldModified(RecordDescriptionEvent event)
Invoked when a field value has been changed in a Record object.

Parameters:
event - The event fired.
See Also:
setField, setContents
 o keyFieldDescriptionAdded
 public abstract void keyFieldDescriptionAdded(RecordDescriptionEvent event)
Invoked when a key field description has been added to a RecordFormat object.

Parameters:
event - The event fired.
See Also:
addKeyFieldDescription

All Packages  Class Hierarchy  This Package  Previous  Next  Index