org.codehaus.plexus.util

Interface DirectoryWalkListener

public interface DirectoryWalkListener

DirectoryWalkListener

Version: $Id: DirectoryWalkListener.java 5958 2007-02-28 10:29:55Z olamy $

Method Summary
voiddebug(String message)
voiddirectoryWalkFinished()
The directory walking has finished.
voiddirectoryWalkStarting(File basedir)
The directory walking has begun.
voiddirectoryWalkStep(int percentage, File file)
The included entry that was encountered.

Method Detail

debug

public void debug(String message)

directoryWalkFinished

public void directoryWalkFinished()
The directory walking has finished.

directoryWalkStarting

public void directoryWalkStarting(File basedir)
The directory walking has begun.

Parameters: basedir the basedir that walk started in.

directoryWalkStep

public void directoryWalkStep(int percentage, File file)
The included entry that was encountered.

Parameters: percentage rough percentage of the walk completed. (inaccurate) file the file that was included.