Uses of Class
javax.swing.filechooser.FileFilter
Packages that use FileFilter
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Contains classes and interfaces used by the
JFileChooser
component.Provides one interface and many abstract classes that Swing uses to provide
its pluggable look-and-feel capabilities.
Provides user interface objects built according to the Basic look and feel.
Provides user interface objects built according to the Java look and feel
(once codenamed Metal), which is the default look and feel.
Provides user interface objects that combine two or more look and feels.
-
Uses of FileFilter in javax.swing
Methods in javax.swing that return FileFilterModifier and TypeMethodDescriptionJFileChooser.getAcceptAllFileFilter()
Returns theAcceptAll
file filter.JFileChooser.getChoosableFileFilters()
Gets the list of user choosable file filters.JFileChooser.getFileFilter()
Returns the currently selected file filter.Methods in javax.swing with parameters of type FileFilterModifier and TypeMethodDescriptionvoid
JFileChooser.addChoosableFileFilter
(FileFilter filter) Adds a filter to the list of user choosable file filters.boolean
JFileChooser.removeChoosableFileFilter
(FileFilter f) Removes a filter from the list of user choosable file filters.void
JFileChooser.setFileFilter
(FileFilter filter) Sets the current file filter. -
Uses of FileFilter in javax.swing.filechooser
Subclasses of FileFilter in javax.swing.filechooserModifier and TypeClassDescriptionfinal class
An implementation ofFileFilter
that filters using a specified set of extensions. -
Uses of FileFilter in javax.swing.plaf
Methods in javax.swing.plaf that return FileFilterModifier and TypeMethodDescriptionabstract FileFilter
FileChooserUI.getAcceptAllFileFilter
(JFileChooser fc) Returns an accept-all file filter. -
Uses of FileFilter in javax.swing.plaf.basic
Subclasses of FileFilter in javax.swing.plaf.basicModifier and TypeClassDescriptionprotected class
Accept all file filter.Methods in javax.swing.plaf.basic that return FileFilterModifier and TypeMethodDescriptionBasicFileChooserUI.getAcceptAllFileFilter
(JFileChooser fc) Returns the default accept all file filter -
Uses of FileFilter in javax.swing.plaf.metal
Fields in javax.swing.plaf.metal declared as FileFilterModifier and TypeFieldDescriptionprotected FileFilter[]
MetalFileChooserUI.FilterComboBoxModel.filters
An array of file filters. -
Uses of FileFilter in javax.swing.plaf.multi
Methods in javax.swing.plaf.multi that return FileFilterModifier and TypeMethodDescriptionMultiFileChooserUI.getAcceptAllFileFilter
(JFileChooser a) Invokes thegetAcceptAllFileFilter
method on each UI handled by this object.