| java.io.FileFilter
FileFilter | abstract public interface FileFilter (Code) | | FileFilter is an interface for filtering abstract Files
|
Method Summary | |
abstract public boolean | accept(File pathname) Answers a boolean indicating whether or not a specific File should be
included in a pathname list.
Parameters: pathname - the abstract File to check. |
accept | abstract public boolean accept(File pathname)(Code) | | Answers a boolean indicating whether or not a specific File should be
included in a pathname list.
Parameters: pathname - the abstract File to check. true if the File should be includes,false otherwise. |
|
|