wt.tools.xref
Interface ProcessFileInterface

All Known Implementing Classes:
CallGraph, cdc, IndexJavaSource, pdl, xref

public interface ProcessFileInterface


Method Summary
 boolean directoryNameOk(String directoryName)
          this method is provided so that the application can validate whether or not the specified directory is ok or not
 boolean fileTypeOk(String fileName)
          This method is provided for the developer in case they do not want to process every single file in every directory.
 void processDirectory(String directoryName)
          This method is provided for the developer in case they want to do something each time they enter a new directory
 void processFile(String fileName)
          this method is provided for the developer in case they want to do something each time a file is encountered in a directory.
 

Method Detail

processDirectory

public void processDirectory(String directoryName)
This method is provided for the developer in case they want to do something each time they enter a new directory


directoryNameOk

public boolean directoryNameOk(String directoryName)
this method is provided so that the application can validate whether or not the specified directory is ok or not


processFile

public void processFile(String fileName)
this method is provided for the developer in case they want to do something each time a file is encountered in a directory.


fileTypeOk

public boolean fileTypeOk(String fileName)
This method is provided for the developer in case they do not want to process every single file in every directory. They can then use this method to filter out the files they do not want to process.