org.apache.commons.io.filefilter
Class AbstractFileFilter
java.lang.Object
org.apache.commons.io.filefilter.AbstractFileFilter
- FileFilter, FilenameFilter, IOFileFilter
public abstract class AbstractFileFilter
extends java.lang.Object
An abstract class which implements the Java FileFilter and FilenameFilter
interfaces via the IOFileFilter interface.
Note that a subclass
must override one of the accept methods,
otherwise your class will infinitely loop.
$Revision: 155419 $ $Date: 2005-02-26 08:02:41 -0500 (Sat, 26 Feb 2005) $- Henri Yandell
- Stephen Colebourne
boolean | accept(File file) - Checks to see if the File should be accepted by this filter.
|
boolean | accept(File dir, String name) - Checks to see if the File should be accepted by this filter.
|
accept
public boolean accept(File file)
Checks to see if the File should be accepted by this filter.
- accept in interface IOFileFilter
- true if this file matches the test
accept
public boolean accept(File dir,
String name)
Checks to see if the File should be accepted by this filter.
- accept in interface IOFileFilter
dir
- the directory File to checkname
- the filename within the directory to check
- true if this file matches the test