com.darwinsys.io.FileHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
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();
}