Back to project page magdaa-library.
The source code is released under:
GNU General Public License
If you think the Android project magdaa-library listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.zeroturnaround.zip.transform; //from w w w.j ava 2s. com import java.io.IOException; import java.io.InputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; /** * Call-back for traversing ZIP entries with their contents and producing a new ZIP file as an output. * * @author Rein Raudjrv */ public interface ZipEntryTransformer { /** * Copies and transforms the given entry into the ZIP output stream. */ void transform(InputStream in, ZipEntry zipEntry, ZipOutputStream out) throws IOException; }