com.ibm.as400.access
Interface FileListener

All Superinterfaces:
EventListener

public interface FileListener
extends EventListener

The FileListener interface provides an interface for receiving File events.


Method Summary
 void fileClosed(FileEvent event)
          Invoked when a file has been closed.
 void fileCreated(FileEvent event)
          Invoked when a file has been created.
 void fileDeleted(FileEvent event)
          Invoked when a file is deleted.
 void fileModified(FileEvent event)
          Invoked when a file has been modified.
 void fileOpened(FileEvent event)
          Invoked when a file has been opened.
 

Method Detail

fileClosed

public void fileClosed(FileEvent event)
Invoked when a file has been closed.

Parameters:
event - The file event.

fileCreated

public void fileCreated(FileEvent event)
Invoked when a file has been created.

Parameters:
event - The file event.

fileDeleted

public void fileDeleted(FileEvent event)
Invoked when a file is deleted.

Parameters:
event - The file event.

fileModified

public void fileModified(FileEvent event)
Invoked when a file has been modified.

Parameters:
event - The file event.

fileOpened

public void fileOpened(FileEvent event)
Invoked when a file has been opened.

Parameters:
event - The file event.