Package org.codehaus.plexus.util
Interface DirectoryWalkListener
public interface DirectoryWalkListener
Observes the actions of a
DirectoryWalker.- Version:
- $Id$
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidvoidThe directory walking has finished.voiddirectoryWalkStarting(File basedir) The directory walking has begun.voiddirectoryWalkStep(int percentage, File file) The included entry that was encountered.
-
Method Details
-
directoryWalkStarting
The directory walking has begun.- Parameters:
basedir- the basedir that walk started in.
-
directoryWalkStep
The included entry that was encountered.- Parameters:
percentage- rough percentage of the walk completed. (inaccurate)file- the file that was included.
-
directoryWalkFinished
void directoryWalkFinished()The directory walking has finished. -
debug
-