We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider:
final var factory = new JWFilterGlobFactory(); final var filter = factory.create( "PDF files (*.pdf)" ) .addRule( INCLUDE, "**/*.pdf" ) .addRule( EXCLUDE_AND_HALT, "**/.*" ) .build(); final var builder = builder().addFileFilters( filter ); final var config = builder.build(); try( final var chooserType = JWFileChoosers.create() ) { final var chooser = chooserType.create( parentWindow, config ); chooser.showAndWait();
Expected:
PDF files (*.pdf)
.
Actual:
All files (*.*)
Not sure if this is an enhancement or a bug.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider:
Expected:
PDF files (*.pdf)
..
) are listed.Actual:
All files (*.*)
.Not sure if this is an enhancement or a bug.
The text was updated successfully, but these errors were encountered: