Uses of Interface
com.sun.interview.FileFilter

Packages that use FileFilter
Package
Description
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
    class 
    A filter which accepts all (non-directory) files.
    class 
    A filter which accepts directories.
    class 
    A filter which accepts files based on their extension.
    class 
    A filter which accepts all files and directories.
    Methods in com.sun.interview that return FileFilter
    Modifier and Type
    Method
    Description
    FileListQuestion.getFilters()
    Get the filters used to select valid files for a response to this question.
    FileQuestion.getFilters()
    Get the filters used to select valid files for a response to this question.
    PropertiesQuestion.FilenameConstraints.getFilters()
    Get the filters used to select valid files for a response to this question.
    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
    void
    FileListQuestion.setFilter(FileFilter filter)
    Set a filter used to select valid files for a response to this question.
    void
    FileQuestion.setFilter(FileFilter filter)
    Set a filter used to select valid files for a response to this question.
    void
    PropertiesQuestion.FilenameConstraints.setFilter(FileFilter filter)
    Set a filter used to select valid files for a response to this question.
    void
    FileListQuestion.setFilters(FileFilter... fs)
    Set the filters used to select valid files for a response to this question.
    void
    FileQuestion.setFilters(FileFilter... filters)
    Set the filters used to select valid files for a response to this question.
    void
    PropertiesQuestion.FilenameConstraints.setFilters(FileFilter... filters)
    Set the filters used to select valid files for a response to this question.
    void
    FileListQuestion.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.