org.apache.commons.io.filefilter
Interface ConditionalFileFilter

All Known Implementing Classes:
AndFileFilter, OrFileFilter

public interface ConditionalFileFilter

Defines operations for conditional file filters.

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

Method Summary
 void addFileFilter(IOFileFilter ioFileFilter)
          Adds the specified file filter to the list of file filters at the end of the list.
 List getFileFilters()
          Returns this conditional file filter's list of file filters.
 boolean removeFileFilter(IOFileFilter ioFileFilter)
          Removes the specified file filter.
 void setFileFilters(List fileFilters)
          Sets the list of file filters, replacing any previously configured file filters on this filter.
 

Method Detail

addFileFilter

public void addFileFilter(IOFileFilter ioFileFilter)
Adds the specified file filter to the list of file filters at the end of the list.

Parameters:
ioFileFilter - the filter to be added
Since:
Commons IO 1.1

getFileFilters

public List getFileFilters()
Returns this conditional file filter's list of file filters.

Returns:
the file filter list
Since:
Commons IO 1.1

removeFileFilter

public boolean removeFileFilter(IOFileFilter ioFileFilter)
Removes the specified file filter.

Parameters:
ioFileFilter - filter to be removed
Returns:
true if the filter was found in the list, false otherwise
Since:
Commons IO 1.1

setFileFilters

public void setFileFilters(List fileFilters)
Sets the list of file filters, replacing any previously configured file filters on this filter.

Parameters:
fileFilters - the list of filters
Since:
Commons IO 1.1


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