Package uk.ac.starlink.topcat
Class SuffixFileFilter
- java.lang.Object
-
- javax.swing.filechooser.FileFilter
-
- uk.ac.starlink.topcat.SuffixFileFilter
-
public class SuffixFileFilter extends javax.swing.filechooser.FileFilterFile filter that matches according to filename suffix. Any file which ends in the same string as one of the suffices supplied at construction time is considered to match. This matching is case insensitive. Any directory is considered to match also (this permits navigation in the JFileChooser).- Since:
- 19 Dec 2005
- Author:
- Mark Taylor
-
-
Constructor Summary
Constructors Constructor Description SuffixFileFilter(java.lang.String[] suffices)Constructs a new file filter which selects on the given suffices.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanaccept(java.io.File file)booleanequals(java.lang.Object other)java.lang.StringgetDescription()inthashCode()
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
- Specified by:
getDescriptionin classjavax.swing.filechooser.FileFilter
-
accept
public boolean accept(java.io.File file)
- Specified by:
acceptin classjavax.swing.filechooser.FileFilter
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-