org.apache.commons.io.filefilter
Interface IOFileFilter

All Superinterfaces:
FileFilter, FilenameFilter
All Known Implementing Classes:
AbstractFileFilter, AndFileFilter, FalseFileFilter, OrFileFilter, TrueFileFilter

public interface IOFileFilter
extends FileFilter, FilenameFilter

An interface which brings the FileFilter and FilenameFilter interfaces together.

Since:
Commons IO 1.0
Version:
$Revision: 155419 $ $Date: 2005-02-26 13:02:41 +0000 (Sat, 26 Feb 2005) $

Method Summary
 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.
 

Method Detail

accept

public boolean accept(File file)
Checks to see if the File should be accepted by this filter.

Defined in FileFilter.

Specified by:
accept in interface FileFilter
Parameters:
file - the File to check
Returns:
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.

Defined in FilenameFilter.

Specified by:
accept in interface FilenameFilter
Parameters:
dir - the directory File to check
name - the filename within the directory to check
Returns:
true if this file matches the test


Copyright © 2002-2006 The Apache Software Foundation. All Rights Reserved.