package net.sourceforge.phpeclipse.mover; import java.io.File; /** * @author khartlage * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>ObfuscatorIgnores. * To enable and disable the creation of type comments go to * Window>Preferences>Java>Code Generation. */ public interface IFilter { final public static DefaultFilter DEFAULT_FILTER = new DefaultFilter(); final public static DefaultFilter PHP_FILTER = new PHPFilter(); public boolean isFileOk(File file); public boolean isDirectoryOk(File file); }