Uses of Class
javax.swing.filechooser.FileFilter
-
Packages that use FileFilter 软件包 描述 javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.filechooser 包含JFileChooser组件使用的类和接口。javax.swing.plaf 提供一个接口和许多抽象类,Swing用来提供其可插拔的外观和感觉功能。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.swing.plaf.metal 提供根据Java外观构建的用户界面对象(一旦代号为 Metal ),这是默认的外观和感觉。javax.swing.plaf.multi 提供组合两种或多种外观和感觉的用户界面对象。 -
-
Uses of FileFilter in javax.swing
Methods in javax.swing that return FileFilter Modifier and Type 方法 描述 FileFilterJFileChooser. getAcceptAllFileFilter()返回AcceptAll文件过滤器。FileFilter[]JFileChooser. getChoosableFileFilters()获取用户可选择的文件过滤器列表。FileFilterJFileChooser. getFileFilter()返回当前选择的文件过滤器。Methods in javax.swing with parameters of type FileFilter Modifier and Type 方法 描述 voidJFileChooser. addChoosableFileFilter(FileFilter filter)将一个过滤器添加到用户可选择的文件过滤器列表中。booleanJFileChooser. removeChoosableFileFilter(FileFilter f)从用户可选择的文件过滤器列表中删除一个过滤器。voidJFileChooser. setFileFilter(FileFilter filter)设置当前文件过滤器。 -
Uses of FileFilter in javax.swing.filechooser
Subclasses of FileFilter in javax.swing.filechooser Modifier and Type Class 描述 classFileNameExtensionFilter实现FileFilter过滤使用指定的一组扩展。 -
Uses of FileFilter in javax.swing.plaf
Methods in javax.swing.plaf that return FileFilter Modifier and Type 方法 描述 abstract FileFilterFileChooserUI. getAcceptAllFileFilter(JFileChooser fc)返回一个accept-all文件过滤器。 -
Uses of FileFilter in javax.swing.plaf.basic
Subclasses of FileFilter in javax.swing.plaf.basic Modifier and Type Class 描述 protected classBasicFileChooserUI.AcceptAllFileFilter接受所有文件过滤器。Methods in javax.swing.plaf.basic that return FileFilter Modifier and Type 方法 描述 FileFilterBasicFileChooserUI. getAcceptAllFileFilter(JFileChooser fc)返回默认值接受所有文件过滤器 -
Uses of FileFilter in javax.swing.plaf.metal
Fields in javax.swing.plaf.metal declared as FileFilter Modifier and Type Field 描述 protected FileFilter[]MetalFileChooserUI.FilterComboBoxModel. filters一组文件过滤器。 -
Uses of FileFilter in javax.swing.plaf.multi
Methods in javax.swing.plaf.multi that return FileFilter Modifier and Type 方法 描述 FileFilterMultiFileChooserUI. getAcceptAllFileFilter(JFileChooser a)在此对象处理的每个UI上调用getAcceptAllFileFilter方法。
-