Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

allensoft.util
Class DirectoriesFileFilter  view DirectoriesFileFilter download DirectoriesFileFilter.java

java.lang.Object
  extended byallensoft.util.DirectoriesFileFilter
All Implemented Interfaces:
java.io.FileFilter

public class DirectoriesFileFilter
extends java.lang.Object
implements java.io.FileFilter

A file filter which will only accept files which are also accepted by another filter.


Field Summary
private  java.io.FileFilter m_Filter
           
 
Constructor Summary
DirectoriesFileFilter(java.io.FileFilter filter)
           
 
Method Summary
 boolean accept(java.io.File file)
          This method determines whether or not a given pathname should be included in a pathname listing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

m_Filter

private java.io.FileFilter m_Filter
Constructor Detail

DirectoriesFileFilter

public DirectoriesFileFilter(java.io.FileFilter filter)
Method Detail

accept

public boolean accept(java.io.File file)
Description copied from interface: java.io.FileFilter
This method determines whether or not a given pathname should be included in a pathname listing.

Specified by:
accept in interface java.io.FileFilter