Package com.sun.interview
Class AllFilesFileFilter
- java.lang.Object
-
- com.sun.interview.AllFilesFileFilter
-
- All Implemented Interfaces:
FileFilter
public class AllFilesFileFilter extends java.lang.Object implements FileFilter
A filter which accepts all (non-directory) files.
-
-
Constructor Summary
Constructors Constructor Description AllFilesFileFilter(java.lang.String description)
Create a filter which accepts all (non-directory) files.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
accept(java.io.File f)
Check if a file is accepted by this filter.boolean
acceptsDirectories()
Check if (all) directories are accepted by this filter.java.lang.String
getDescription()
Get a short description for this filter.
-
-
-
Method Detail
-
accept
public boolean accept(java.io.File f)
Description copied from interface:FileFilter
Check if a file is accepted by this filter.- Specified by:
accept
in interfaceFileFilter
- Parameters:
f
- The file to be tested.- Returns:
- true if the file is accepted by this filter
-
acceptsDirectories
public boolean acceptsDirectories()
Description copied from interface:FileFilter
Check if (all) directories are accepted by this filter.- Specified by:
acceptsDirectories
in interfaceFileFilter
- Returns:
- true if directories are accepted by this filter
-
getDescription
public java.lang.String getDescription()
Get a short description for this filter.- Specified by:
getDescription
in interfaceFileFilter
- Returns:
- a short description of this filter
-
-