-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
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
6852577: Only for Nimbus LAF UIManager.get("PasswordField.echoChar") is null #10035
Conversation
👋 Welcome back psadhukhan! A progress list of the required criteria for merging this PR into |
Webrevs
|
I guess currently the Nimbus L&F use some char for the password field, how that place will intrract with this new ui property? |
Added code to interact with the property same way other L&F does. tested with
|
src/java.desktop/share/classes/javax/swing/plaf/synth/SynthLookAndFeel.java
Show resolved
Hide resolved
src/java.desktop/share/classes/javax/swing/plaf/synth/SynthPasswordFieldUI.java
Outdated
Show resolved
Hide resolved
src/java.desktop/share/classes/javax/swing/plaf/synth/SynthPasswordFieldUI.java
Outdated
Show resolved
Hide resolved
for (UIManager.LookAndFeelInfo laf : | ||
UIManager.getInstalledLookAndFeels()) { | ||
System.out.println("Testing L&F: " + laf.getClassName()); | ||
SwingUtilities.invokeAndWait(() -> setLookAndFeel(laf)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably call setLookAndFeel
on the main thread, or you should call UIManager.get
below on the EDT as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably call
setLookAndFeel
on the main thread, or you should callUIManager.get
below on the EDT as well.
In fact, I was inclined to use the main thread, it produces a shorter stack trace. EDT is okay, no change is required if you don't feel like it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Normally, many tests does this only which is what I did initially..
public static void main(String[] args) throws Exception {
for (UIManager.LookAndFeelInfo laf : UIManager.getInstalledLookAndFeels()) {
System.out.println("Testing l&f : " + laf.getClassName());
SwingUtilities.invokeAndWait(() -> setLookAndFeel(laf));
but I guess the present one will suffice too...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My initial concern was that you use two different threads where you shouldn't. I would rather use the main thread for all operations in this particular case. As long as setting the LaF and reading the properties are on the same thread, we're safe.
src/java.desktop/share/classes/javax/swing/plaf/synth/SynthLookAndFeel.java
Show resolved
Hide resolved
System.out.println("Echo char: " + | ||
UIManager.get("PasswordField.echoChar")); | ||
if (UIManager.get("PasswordField.echoChar") == null) { | ||
throw new RuntimeException( | ||
"PasswordField.echoChar returns null for " + | ||
laf.getClassName()); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A question of style: do we usually wrap lines before the operator or after? Java Coding Style is for the former. This versions seems to have been updated and the code formatting is lost now; this draft is still for the same usage.
@prsadhuk This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 531 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
/integrate |
Going to push as commit 37bd4fb.
Your commit was automatically rebased without conflicts. |
Default echo character obtained through
PasswordField.echoChar
UIProperty returns null for Nimbus L&F,which is fixed by adding the default character * in the UIDefault table.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/10035/head:pull/10035
$ git checkout pull/10035
Update a local copy of the PR:
$ git checkout pull/10035
$ git pull https://git.openjdk.org/jdk pull/10035/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 10035
View PR using the GUI difftool:
$ git pr show -t 10035
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/10035.diff