- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.FileChooserUI
-
- 已知直接子类:
-
BasicFileChooserUI
,MultiFileChooserUI
public abstract class FileChooserUI extends ComponentUI
JFileChooser
可插拔外观界面。
-
-
构造方法摘要
构造方法 构造器 描述 FileChooserUI()
-
方法摘要
所有方法 实例方法 抽象方法 具体的方法 变量和类型 方法 描述 abstract void
ensureFileIsVisible(JFileChooser fc, File f)
确保有问题的文件可见。abstract FileFilter
getAcceptAllFileFilter(JFileChooser fc)
返回一个accept-all文件过滤器。abstract String
getApproveButtonText(JFileChooser fc)
返回批准按钮文本。JButton
getDefaultButton(JFileChooser fc)
返回当前LookAndFeel
默认按钮。abstract String
getDialogTitle(JFileChooser fc)
返回对话框标题。abstract FileView
getFileView(JFileChooser fc)
返回文件视图。abstract void
rescanCurrentDirectory(JFileChooser fc)
重新扫描当前目录。-
声明方法的类 javax.swing.plaf.ComponentUI
contains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
-
-
-
-
方法详细信息
-
getAcceptAllFileFilter
public abstract FileFilter getAcceptAllFileFilter(JFileChooser fc)
返回一个accept-all文件过滤器。- 参数
-
fc
- 文件选择器 - 结果
- 一个accept-all文件过滤器
-
getFileView
public abstract FileView getFileView(JFileChooser fc)
返回文件视图。- 参数
-
fc
- 文件选择器 - 结果
- 文件视图
-
getApproveButtonText
public abstract String getApproveButtonText(JFileChooser fc)
返回批准按钮文本。- 参数
-
fc
- 文件选择器 - 结果
- 批准按钮文本。
-
getDialogTitle
public abstract String getDialogTitle(JFileChooser fc)
返回对话框标题。- 参数
-
fc
- 文件选择器 - 结果
- 对话框标题。
-
rescanCurrentDirectory
public abstract void rescanCurrentDirectory(JFileChooser fc)
重新扫描当前目录。- 参数
-
fc
- 文件选择器
-
ensureFileIsVisible
public abstract void ensureFileIsVisible(JFileChooser fc, File f)
确保有问题的文件可见。- 参数
-
fc
- 文件选择器 -
f
- 该文件
-
getDefaultButton
public JButton getDefaultButton(JFileChooser fc)
返回当前LookAndFeel
默认按钮。JFileChooser
将使用此按钮作为对话框窗口的默认按钮。- 参数
-
fc
-JFileChooser
其默认按钮的JFileChooser
- 结果
- 当前外观的默认JButton
- 从以下版本开始:
- 1.7
-
-