|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.swing.filechooser.FileFilter
org.geotools.io.DefaultFileFilter
public class DefaultFileFilter
A FileFilter
implementation using Unix-style wildcards.
Constructor Summary | |
---|---|
DefaultFileFilter(java.lang.String pattern)
Constructs a file filter for the specified pattern. |
|
DefaultFileFilter(java.lang.String pattern,
java.lang.String description)
Constructs a file filter for the specified pattern and description. |
Method Summary | |
---|---|
boolean |
accept(java.io.File file)
Tests if a specified file matches the pattern. |
boolean |
accept(java.io.File directory,
java.lang.String name)
Tests if a specified file matches the pattern. |
java.lang.String |
getDescription()
Returns the description of this filter. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultFileFilter(java.lang.String pattern)
"*"
and "?"
wildcards.
pattern
- The pattern (e.g. "*.png"
).public DefaultFileFilter(java.lang.String pattern, java.lang.String description)
"*"
and "?"
wildcards.
pattern
- The pattern (e.g. "*.png"
).description
- The description of this filter, usually for graphical user interfaces.Method Detail |
---|
public java.lang.String getDescription()
"PNG images"
.
getDescription
in class javax.swing.filechooser.FileFilter
public boolean accept(java.io.File file)
accept
in interface java.io.FileFilter
accept
in class javax.swing.filechooser.FileFilter
file
- The file to be tested.
true
if and only if the name matches the pattern.public boolean accept(java.io.File directory, java.lang.String name)
accept
in interface java.io.FilenameFilter
directory
- The directory in which the file was found.name
- The name of the file.
true
if and only if the name matches the pattern.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |