| java.lang.Object com.salmonllc.util.FilterFile
FilterFile | public class FilterFile implements java.io.FilenameFilter(Code) | | Implements a file filter to test whether a file ends with a particular suffix
|
Constructor Summary | |
public | FilterFile(String suffix) FileFilter constructor comment. | public | FilterFile(String suffix, boolean bCaseInsensitive) FileFilter constructor comment. |
Method Summary | |
public boolean | accept(java.io.File dir, String name) Tests if a specified file should be included in a file list.
Parameters: dir - the directory in which the file was found. Parameters: name - the name of the file. |
FilterFile | public FilterFile(String suffix)(Code) | | FileFilter constructor comment.
|
FilterFile | public FilterFile(String suffix, boolean bCaseInsensitive)(Code) | | FileFilter constructor comment.
|
accept | public boolean accept(java.io.File dir, String name)(Code) | | Tests if a specified file should be included in a file list.
Parameters: dir - the directory in which the file was found. Parameters: name - the name of the file. true if and only if the name should beincluded in the file list; false otherwise. |
|
|