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

com.darwinsys.io.FileHandler Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.io;

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

/** Visitor interface for Crawler.
 */
public interface FileHandler {
	public void init() throws IOException;
	public void visit(File f) throws IOException;
	public void destroy() throws IOException;
	public File getFile();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy