org.apache.commons.io.find
Interface FindListener


public interface FindListener


Method Summary
 void directoryFinished(FindEvent findEvent)
          A directory has been finished.
 void directoryStarted(FindEvent findEvent)
          A directory has begun to be looked at by a Finder.
 void fileFound(FindEvent findEvent)
          A file has been found.
 

Method Detail

directoryStarted

public void directoryStarted(FindEvent findEvent)
A directory has begun to be looked at by a Finder.


directoryFinished

public void directoryFinished(FindEvent findEvent)
A directory has been finished. The FindEvent will contain an array of the filenames found.


fileFound

public void fileFound(FindEvent findEvent)
A file has been found. The FindEvent will contain the filename found.