org.openjump.core.ui.io.file
Class FileNameExtensionFilter

java.lang.Object
  extended by javax.swing.filechooser.FileFilter
      extended by org.openjump.core.ui.io.file.FileNameExtensionFilter
Direct Known Subclasses:
FileLayerLoaderExtensionFilter

public class FileNameExtensionFilter
extends javax.swing.filechooser.FileFilter


Constructor Summary
FileNameExtensionFilter(java.lang.String description, java.lang.String extension)
           
FileNameExtensionFilter(java.lang.String description, java.lang.String[] extensions)
           
 
Method Summary
 boolean accept(java.io.File f)
          Tests the specified file, returning true if the file is accepted, false otherwise.
 java.lang.String getDescription()
          The description of this filter.
 java.lang.String[] getExtensions()
          Returns the set of file name extensions files are tested against.
 java.lang.String toString()
          Returns a string representation of the FileNameExtensionFilter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FileNameExtensionFilter

public FileNameExtensionFilter(java.lang.String description,
                               java.lang.String extension)

FileNameExtensionFilter

public FileNameExtensionFilter(java.lang.String description,
                               java.lang.String[] extensions)
Method Detail

accept

public boolean accept(java.io.File f)
Tests the specified file, returning true if the file is accepted, false otherwise. True is returned if the extension matches one of the file name extensions of this FileFilter, or the file is a directory.

Specified by:
accept in class javax.swing.filechooser.FileFilter
Parameters:
f - the File to test
Returns:
true if the file is to be accepted, false otherwise

getDescription

public java.lang.String getDescription()
The description of this filter. For example: "JPG and GIF Images."

Specified by:
getDescription in class javax.swing.filechooser.FileFilter
Returns:
the description of this filter

getExtensions

public java.lang.String[] getExtensions()
Returns the set of file name extensions files are tested against.

Returns:
the set of file name extensions files are tested against

toString

public java.lang.String toString()
Returns a string representation of the FileNameExtensionFilter. This method is intended to be used for debugging purposes, and the content and format of the returned string may vary between implementations.

Overrides:
toString in class java.lang.Object
Returns:
a string representation of this FileNameExtensionFilter