com.armatiek.infofuze.stream.filesystem.filefilter
Class FileFileFilter

java.lang.Object
  extended by com.armatiek.infofuze.stream.filesystem.filefilter.FileFileFilter
All Implemented Interfaces:
IOFileFilter, java.io.Serializable

public class FileFileFilter
extends java.lang.Object
implements IOFileFilter, java.io.Serializable

This filter accepts Files that are files (not directories). Based on code from Apache Commons IO version 2.01. The main difference is that this class filters objects that implement FileIf, not File.

See Also:
Serialized Form

Field Summary
static IOFileFilter FILE
          Singleton instance of file filter
 
Method Summary
 boolean accept(FileIf file)
          Checks to see if the file is a file.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FILE

public static final IOFileFilter FILE
Singleton instance of file filter

Method Detail

accept

public boolean accept(FileIf file)
Checks to see if the file is a file.

Specified by:
accept in interface IOFileFilter
Parameters:
file - the File to check
Returns:
true if the file is a file