Interface DirectoryWalkListener

All Known Implementing Classes:
WalkCollector

@Deprecated public interface DirectoryWalkListener
Deprecated.
use java.nio.file.FileVisitor and related classes
DirectoryWalkListener.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(String message)
    Deprecated.
     
    void
    Deprecated.
    The directory walking has finished.
    void
    Deprecated.
    The directory walking has begun.
    void
    directoryWalkStep(int percentage, File file)
    Deprecated.
    The included entry that was encountered.
  • Method Details

    • directoryWalkStarting

      void directoryWalkStarting(File basedir)
      Deprecated.
      The directory walking has begun.
      Parameters:
      basedir - the basedir that walk started in
    • directoryWalkStep

      void directoryWalkStep(int percentage, 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(String message)
      Deprecated.
      Parameters:
      message - the message for the debugging output