com.vladium.util
Interface IPathEnumerator.IPathHandler

All Known Implementing Classes:
ClassPathProcessorST, InstrProcessor
Enclosing interface:
IPathEnumerator

public static interface IPathEnumerator.IPathHandler


Method Summary
 void handleArchiveEnd(java.io.File parentDir, java.io.File archive)
          Called after the enumerator's zip input stream for this archive has been closed.
 void handleArchiveEntry(java.util.jar.JarInputStream in, java.util.zip.ZipEntry entry)
           
 void handleArchiveStart(java.io.File parentDir, java.io.File archive, java.util.jar.Manifest manifest)
          Called just after the enumerator's zip input stream for this archive is opened and the manifest entry is read.
 void handleDirEnd(java.io.File pathDir, java.io.File dir)
           
 void handleDirStart(java.io.File pathDir, java.io.File dir)
           
 void handleFile(java.io.File pathDir, java.io.File file)
           
 

Method Detail

handleDirStart

public void handleDirStart(java.io.File pathDir,
                           java.io.File dir)

handleFile

public void handleFile(java.io.File pathDir,
                       java.io.File file)

handleDirEnd

public void handleDirEnd(java.io.File pathDir,
                         java.io.File dir)

handleArchiveStart

public void handleArchiveStart(java.io.File parentDir,
                               java.io.File archive,
                               java.util.jar.Manifest manifest)
Called just after the enumerator's zip input stream for this archive is opened and the manifest entry is read.


handleArchiveEntry

public void handleArchiveEntry(java.util.jar.JarInputStream in,
                               java.util.zip.ZipEntry entry)

handleArchiveEnd

public void handleArchiveEnd(java.io.File parentDir,
                             java.io.File archive)
Called after the enumerator's zip input stream for this archive has been closed.