com.ibm.as400.access
Class RecordDescriptionEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.ibm.as400.access.RecordDescriptionEvent
-
- All Implemented Interfaces:
- java.io.Serializable
public class RecordDescriptionEvent extends java.util.EventObject
The RecordDescriptionEvent class represents a RecordDescriptionEvent. This class is used to fire events from the record description classes,RecordFormat
andRecord
to listeners that have implemented theRecordDescriptionListener
interface.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static int
FIELD_DESCRIPTION_ADDED
Event id indicating that a field description has been added to a RecordFormat object.static int
FIELD_MODIFIED
Event id indicating that a field value has been modified in a Record object.static int
KEY_FIELD_DESCRIPTION_ADDED
Event id indicating that a key field description has been added to a RecordFormat object.
-
Constructor Summary
Constructors Constructor and Description RecordDescriptionEvent(java.lang.Object source, int id)
Constructs a RecordDescriptionEvent object.
-
Method Summary
Methods Modifier and Type Method and Description int
getID()
Returns the identifier for this event.
-
-
-
Field Detail
-
FIELD_DESCRIPTION_ADDED
public static final int FIELD_DESCRIPTION_ADDED
Event id indicating that a field description has been added to a RecordFormat object.
-
KEY_FIELD_DESCRIPTION_ADDED
public static final int KEY_FIELD_DESCRIPTION_ADDED
Event id indicating that a key field description has been added to a RecordFormat object.
-
FIELD_MODIFIED
public static final int FIELD_MODIFIED
Event id indicating that a field value has been modified in a Record object.
-
-
Constructor Detail
-
RecordDescriptionEvent
public RecordDescriptionEvent(java.lang.Object source, int id)
Constructs a RecordDescriptionEvent object. It uses the source and ID specified.- Parameters:
source
- The object where the event originated.id
- The event identifier. The id must be a valid event id for this class.
-
-