dutils.digger.processors
Interface SearchProcessor

All Known Implementing Classes:
ExtractingProcessor, FieldPrintProcessor, MethodPrintProcessor, PrintProcessor

public interface SearchProcessor

SearchProcessors are applied when a File or a ZipEntry are found to match the search criteria.

Version:
1.0
Author:
Daniel Or

Method Summary
 void process(java.io.File f)
          Used when a File that matches the search criteria is found.
 void process(java.io.File f, java.util.zip.ZipFile zFile, java.util.zip.ZipEntry zEntry)
          Used when a ZipEntry that matches the search criteria is found.
 

Method Detail

process

public void process(java.io.File f)
Used when a File that matches the search criteria is found.

Parameters:
f - a File to Process.

process

public void process(java.io.File f,
                    java.util.zip.ZipFile zFile,
                    java.util.zip.ZipEntry zEntry)
Used when a ZipEntry that matches the search criteria is found.

Parameters:
zFile - the ZipFile where the ZipEntry was found.
zEntry - a ZipEntry to process.
f - the actual file being processed (important for entries in nested archives).