java.nio.file.FileVisitor
and related classes@Deprecated
public interface DirectoryWalkListener
Modifier and Type | Method and Description |
---|---|
void |
debug(java.lang.String message)
Deprecated.
|
void |
directoryWalkFinished()
Deprecated.
The directory walking has finished.
|
void |
directoryWalkStarting(java.io.File basedir)
Deprecated.
The directory walking has begun.
|
void |
directoryWalkStep(int percentage,
java.io.File file)
Deprecated.
The included entry that was encountered.
|
void directoryWalkStarting(java.io.File basedir)
basedir
- the basedir that walk started invoid directoryWalkStep(int percentage, java.io.File file)
percentage
- rough percentage of the walk completed. (inaccurate)file
- the file that was includedvoid directoryWalkFinished()
void debug(java.lang.String message)
message
- the message for the debugging output