charvax.swing.filechooser
Class FileFilter

java.lang.Object
  extended bycharvax.swing.filechooser.FileFilter

public abstract class FileFilter
extends java.lang.Object

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.


Constructor Summary
FileFilter()
           
 
Method Summary
abstract  boolean accept(java.io.File file_)
          Determines whether the specified file is accepted by this filter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileFilter

public FileFilter()
Method Detail

accept

public abstract boolean accept(java.io.File file_)
Determines whether the specified file is accepted by this filter.