Operation
PassPhraseFileFilter (String p_extension, String p_description), in Class PassPhraseFileFilter
Documentation
/**
Creates a file filter.
If no filters are added, then all files are accepted.
@see #addExtension
public
PassPhraseFileFilter()
{
}
/**
Creates a file filter that accepts files with the given extension.
Example: new PassPhraseFileFilter("jpg");
@see #addExtension
public PassPhraseFileFilter(String extension) {
this(extension,null);
}
Creates a file filter that accepts the given file type.
Example: new PassPhraseFileFilter( "jpg", "JPEG Image Images");
Note that the "." before the extension is not needed. If
provided, it will be ignored.
@see #addExtension
Protocol | | Qualification | |
Exceptions | | Size | |
Time | | Concurrency | Sequential |
Export Control | PublicAccess | | |
Preconditions
Postconditions
Semantics
Property Settings
Java
GenerateFullyQualifiedThrows | | Abstract | False |
Static | False | Final | False |
Native | False | Synchronized | False |
Strictfp | False | GenerateFullyQualifiedArgument | |
GenerateFullyQualifiedReturn | False | ReplaceExistingCode | True |