ProGuard

proguard.io
Interface DataEntryPump

All Known Implementing Classes:
DirectoryPump

public interface DataEntryPump

This interface provides a method to pump data entries. The implementation determines the source and the type of the data entries. Typical examples are zip entries coming from a zip file of file entries coming from a directory structure. The reader can for instance collect the class files, or copy the resource files that are presented.


Method Summary
 void pumpDataEntries(DataEntryReader dataEntryReader)
          Applies the given DataEntryReader to all data entries that the implementation can provide.
 

Method Detail

pumpDataEntries

public void pumpDataEntries(DataEntryReader dataEntryReader)
                     throws IOException
Applies the given DataEntryReader to all data entries that the implementation can provide.

Throws:
IOException

ProGuard