Package org.apache.maven.shared.utils.io
Interface DirectoryWalkListener
-
- All Known Implementing Classes:
WalkCollector
@Deprecated public interface DirectoryWalkListenerDeprecated.usejava.nio.file.FileVisitorand related classesDirectoryWalkListener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddebug(java.lang.String message)Deprecated.voiddirectoryWalkFinished()Deprecated.The directory walking has finished.voiddirectoryWalkStarting(java.io.File basedir)Deprecated.The directory walking has begun.voiddirectoryWalkStep(int percentage, java.io.File file)Deprecated.The included entry that was encountered.
-
-
-
Method Detail
-
directoryWalkStarting
void directoryWalkStarting(java.io.File basedir)
Deprecated.The directory walking has begun.- Parameters:
basedir- the basedir that walk started in
-
directoryWalkStep
void directoryWalkStep(int percentage, java.io.File file)Deprecated.The included entry that was encountered.- Parameters:
percentage- rough percentage of the walk completed. (inaccurate)file- the file that was included
-
directoryWalkFinished
void directoryWalkFinished()
Deprecated.The directory walking has finished.
-
debug
void debug(java.lang.String message)
Deprecated.- Parameters:
message- the message for the debugging output
-
-