com.ibm.as400.access
Interface AS400FileRecordDescriptionListener
-
- All Superinterfaces:
- java.util.EventListener
public interface AS400FileRecordDescriptionListener extends java.util.EventListener
The AS400FileRecordDescriptionListener interface provides the interface that must be implemented to handle AS400FileRecordDescriptionEvent objects that are fired by theAS400FileRecordDescription
class.
-
-
Method Summary
Methods Modifier and Type Method and Description void
recordFormatRetrieved(AS400FileRecordDescriptionEvent event)
Invoked when the record formats for a file have been retrieved.void
recordFormatSourceCreated(AS400FileRecordDescriptionEvent event)
Invoked when the record format source code files for a file have been created.
-
-
-
Method Detail
-
recordFormatRetrieved
void recordFormatRetrieved(AS400FileRecordDescriptionEvent event)
Invoked when the record formats for a file have been retrieved.- Parameters:
event
- The event fired.- See Also:
AS400FileRecordDescription.retrieveRecordFormat()
-
recordFormatSourceCreated
void recordFormatSourceCreated(AS400FileRecordDescriptionEvent event)
Invoked when the record format source code files for a file have been created.- Parameters:
event
- The event fired.- See Also:
AS400FileRecordDescription.createRecordFormatSource(java.lang.String, java.lang.String)
-
-