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

org.dstadler.commons.zip.OutputHandler Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package org.dstadler.commons.zip;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;

/**
 * Interface for handling output of the Search.
 *
 * @author dominik.stadler
 */
public interface OutputHandler {
	/**
	 * Reports a file that matched.
	 *
	 * @param file
	 * @return true if processing can be stopped, false otherwise
	 * @throws IOException
	 */
	public boolean found(File file, InputStream content) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy