com.vladium.util
Interface IPathEnumerator.IPathHandler

All Known Implementing Classes:
ClassPathProcessorST, InstrProcessor, InstrProcessorST
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

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

handleFile

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

handleDirEnd

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

handleArchiveStart

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

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

handleArchiveEnd

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