📄 filefilter.java
字号:
/* class FileFilter
*/
package charvax.swing.filechooser;
import java.io.File;
/**
* FileFilter is an abstract class that has no default implementation.
* An implementation of this class can be set on a JFileChooser to prevent
* unwanted files from appearing in the directory listing.
*/
public abstract class FileFilter
{
public FileFilter() {}
/**
* Determines whether the specified file is accepted by this filter.
*/
public abstract boolean accept(File file_);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -