public interface DirectoryWalkListener
Modifier and Type | Method and Description |
---|---|
void |
debug(java.lang.String message) |
void |
directoryWalkFinished()
The directory walking has finished.
|
void |
directoryWalkStarting(java.io.File basedir)
The directory walking has begun.
|
void |
directoryWalkStep(int percentage,
java.io.File file)
The included entry that was encountered.
|
void directoryWalkStarting(java.io.File basedir)
basedir
- the basedir that walk started in.void directoryWalkStep(int percentage, java.io.File file)
percentage
- rough percentage of the walk completed. (inaccurate)file
- the file that was included.void directoryWalkFinished()
void debug(java.lang.String message)