com.yworks.yshrink.util.StreamProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yguard Show documentation
Show all versions of yguard Show documentation
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
package com.yworks.yshrink.util;
import java.io.DataInputStream;
import java.io.IOException;
/**
* @author Michael Schroeder, yWorks GmbH http://www.yworks.com
*/
public interface StreamProvider {
public DataInputStream getNextStream() throws IOException;
DataInputStream getNextClassEntryStream() throws IOException;
DataInputStream getNextResourceEntryStream() throws IOException;
}