Operation boolean accept (java.io.File f), in Class PassPhraseFileFilter

Documentation
/**
Creates a file filter from the given string array.
Example: new PassPhraseFileFilter(String {"gif", "jpg"});
Note that the "." before the extension is not needed adn
will be ignored.
@see #addExtension
public PassPhraseFileFilter(String[] filters) {
this(filters, null);
}
/**
Creates a file filter from the given string array and description.
Example: new PassPhraseFileFilter(String {"gif", "jpg"}, "Gif and JPG Images");
Note that the "." before the extension is not needed and will be ignored.
@see #addExtension
public PassPhraseFileFilter(String[] filters, String description) {
this();
for (int i = 0; i < filters.length; i++) {
// add filters one by one
addExtension(filters[i]);
}
if(description!=null) setDescription(description);
}
Return true if this file should be shown in the directory pane,
false if it shouldn't.
Files that begin with "." are ignored.
@see #getExtension
@see FileFilter#accepts


Protocol Qualification 
Exceptions Size 
Time ConcurrencySequential
Export ControlPublicAccess  


Preconditions


Postconditions


Semantics



Property Settings

Java
GenerateFullyQualifiedReturnFalseGenerateFullyQualifiedThrows 
AbstractFalseStaticFalse
FinalFalseNativeFalse
SynchronizedFalseStrictfpFalse
GenerateFullyQualifiedArgument ReplaceExistingCodeTrue