com.yworks.yguard.obf.ResourceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retroguard Show documentation
Show all versions of retroguard Show documentation
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
/*
* ResourceHandler.java
*
* Created on June 26, 2003, 3:51 PM
*/
package com.yworks.yguard.obf;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Map;
/**
*
* @author wiese
*/
public interface ResourceHandler
{
public boolean filterName(String inputName, StringBuffer outputName);
public boolean filterContent(InputStream in, OutputStream out, String resourceName) throws IOException;
public String filterString(String in, String resourceName) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy