Uses of Interface
org.apache.commons.vfs.FileListener

Packages that use FileListener
org.apache.commons.vfs The public VFS API. 
org.apache.commons.vfs.events   
org.apache.commons.vfs.impl The standard VFS implementation. 
org.apache.commons.vfs.provider The File Provider API, and utility classes. 
 

Uses of FileListener in org.apache.commons.vfs
 

Methods in org.apache.commons.vfs with parameters of type FileListener
 void FileSystem.addListener(FileObject file, FileListener listener)
          Adds a listener on a file in this file system.
 void FileSystem.removeListener(FileObject file, FileListener listener)
          Removes a listener from a file in this file system.
 

Uses of FileListener in org.apache.commons.vfs.events
 

Methods in org.apache.commons.vfs.events with parameters of type FileListener
abstract  void AbstractFileChangeEvent.notify(FileListener listener)
           
 void ChangedEvent.notify(FileListener listener)
           
 void CreateEvent.notify(FileListener listener)
           
 void DeleteEvent.notify(FileListener listener)
           
 

Uses of FileListener in org.apache.commons.vfs.impl
 

Fields in org.apache.commons.vfs.impl declared as FileListener
private  FileListener DefaultFileMonitor.listener
          A listener object that if set, is notified on file creation and deletion.
 

Methods in org.apache.commons.vfs.impl that return FileListener
(package private)  FileListener DefaultFileMonitor.getFileListener()
          Access method to get the current FileListener object notified when there are changes with the files added.
 

Constructors in org.apache.commons.vfs.impl with parameters of type FileListener
DefaultFileMonitor(FileListener listener)
           
 

Uses of FileListener in org.apache.commons.vfs.provider
 

Classes in org.apache.commons.vfs.provider that implement FileListener
 class DelegateFileObject
          A file backed by another file.
 

Methods in org.apache.commons.vfs.provider with parameters of type FileListener
 void AbstractFileSystem.addListener(FileObject file, FileListener listener)
          Adds a listener on a file in this file system.
 void AbstractFileSystem.removeListener(FileObject file, FileListener listener)
          Removes a listener from a file in this file system.