new icons
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / mover / IFilter.java
1 package net.sourceforge.phpeclipse.mover;
2
3 import java.io.File;
4
5 /**
6  * @author khartlage
7  *
8  * To change this generated comment edit the template variable "typecomment":
9  * Window>Preferences>Java>ObfuscatorIgnores.
10  * To enable and disable the creation of type comments go to
11  * Window>Preferences>Java>Code Generation.
12  */
13 public interface IFilter {
14   final public static DefaultFilter DEFAULT_FILTER = new DefaultFilter();
15   final public static DefaultFilter PHP_FILTER = new PHPFilter();
16   
17   public boolean isFileOk(File file);
18   public boolean isDirectoryOk(File file);
19 }