Interface DirectoryWalkListener


public interface DirectoryWalkListener
Observes the actions of a DirectoryWalker.
See Also:
  • Method Details

    • directoryWalkStarting

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

      void directoryWalkStep(int percentage, File file)
      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

      void debug(String message)