All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yworks.yguard.obf.ResourceHandler Maven / Gradle / Ivy

Go to download

The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts

There is a newer version: 2.10.0
Show newest version
/*
 * 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