Uses of Class
javax.swing.filechooser.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
Modifier 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.Modifier 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
Modifier and TypeClassDescriptionfinal class
An implementation ofFileFilter
that filters using a specified set of extensions. -
Uses of FileFilter in javax.swing.plaf
Modifier and TypeMethodDescriptionabstract FileFilter
FileChooserUI.getAcceptAllFileFilter
(JFileChooser fc) Returns an accept-all file filter. -
Uses of FileFilter in javax.swing.plaf.basic
Modifier and TypeClassDescriptionprotected class
Accept all file filter.Modifier and TypeMethodDescriptionBasicFileChooserUI.getAcceptAllFileFilter
(JFileChooser fc) Returns the default accept all file filter -
Uses of FileFilter in javax.swing.plaf.metal
Modifier and TypeFieldDescriptionprotected FileFilter[]
MetalFileChooserUI.FilterComboBoxModel.filters
An array of file filters. -
Uses of FileFilter in javax.swing.plaf.multi
Modifier and TypeMethodDescriptionMultiFileChooserUI.getAcceptAllFileFilter
(JFileChooser a) Invokes thegetAcceptAllFileFilter
method on each UI handled by this object.