Uses of Interface
com.sun.interview.FileFilter
-
Packages that use FileFilter Package Description com.sun.interview This package provides a means for creating a set of questions to be asked by a "wizard". -
-
Uses of FileFilter in com.sun.interview
Classes in com.sun.interview that implement FileFilter Modifier and Type Class Description classAllFilesFileFilterA filter which accepts all (non-directory) files.classDirectoryFileFilterA filter which accepts directories.classExtensionFileFilterA filter which accepts files based on their extension.classFilesAndDirectoriesFileFilterA filter which accepts all files and directories.Methods in com.sun.interview that return FileFilter Modifier and Type Method Description FileFilter[]FileListQuestion. getFilters()Get the filters used to select valid files for a response to this question.FileFilter[]FileQuestion. getFilters()Get the filters used to select valid files for a response to this question.FileFilter[]PropertiesQuestion.FilenameConstraints. getFilters()Get the filters used to select valid files for a response to this question.FileFilter[]FileListQuestion. getHintFilters()A set of filters to help users locate the right file/dir.Methods in com.sun.interview with parameters of type FileFilter Modifier and Type Method Description voidFileListQuestion. setFilter(FileFilter filter)Set a filter used to select valid files for a response to this question.voidFileQuestion. setFilter(FileFilter filter)Set a filter used to select valid files for a response to this question.voidPropertiesQuestion.FilenameConstraints. setFilter(FileFilter filter)Set a filter used to select valid files for a response to this question.voidFileListQuestion. setFilters(FileFilter... fs)Set the filters used to select valid files for a response to this question.voidFileQuestion. setFilters(FileFilter... filters)Set the filters used to select valid files for a response to this question.voidPropertiesQuestion.FilenameConstraints. setFilters(FileFilter... filters)Set the filters used to select valid files for a response to this question.voidFileListQuestion. setHintFilters(FileFilter... fs)Set the filters which the user can use to help find files among a list of files - this is somewhat exposing of the fact that there is a user interface.
-