gshute.ioutil
Class AllFileFilter

java.lang.Object
  |
  +--gshute.ioutil.AllFileFilter

public class AllFileFilter
extends java.lang.Object
implements java.io.FilenameFilter

An AllFileFilter implements the FilenameFilter interface by accepting all files.


Constructor Summary
AllFileFilter()
          new AllFileFilter() returns a FilenameFilter that accepts all files.
 
Method Summary
 boolean accept(java.io.File dir, java.lang.String name)
          aff.accept(dir, name) always returns true.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AllFileFilter

public AllFileFilter()
new AllFileFilter() returns a FilenameFilter that accepts all files.
Method Detail

accept

public boolean accept(java.io.File dir,
                      java.lang.String name)
aff.accept(dir, name) always returns true.
Specified by:
accept in interface java.io.FilenameFilter