RFR: 8354646: java.awt.TextField allows to identify the spaces in a password when double clicked at the starting and end of the text [v10]
Jeremy Wood
duke at openjdk.org
Fri Jun 6 05:58:43 UTC 2025
> Make sure AquaTextPasswordFieldUI can't use selectWordAction.
>
> The core problem here was we could call selectWordAction in the Aqua LAF on a JPasswordField. This problem was already solved in the BasicPasswordFieldUI and SynthPasswordFieldUI, but the AquaTextPasswordFieldUI does NOT extend the BasicPasswordFieldUI, so it wasn't inheriting this solution.
>
> So the problem is partially about multiple inheritance.
>
> My first response at solving the problem is just to move the existing solution to the parent BasicTextUI class and use an instanceof to make sure it is only applied to JPasswordFields.
>
> There may be many different philosophies/recommendations on how to resolve this; I'm open to suggestions.
Jeremy Wood has updated the pull request incrementally with three additional commits since the last revision:
- 8354646: skip L&F for UnsupportedLookAndFeelException
This is in response to:
https://github.com/openjdk/jdk/pull/25443#discussion_r2131429289
- 8354646: update copyright year
This is in response to:
https://github.com/openjdk/jdk/pull/25443#discussion_r2131433167
- 8354646: align text below "Password"
Also shorten comment to better match the brevity observed with other @summary tags.
This is in response to:
https://github.com/openjdk/jdk/pull/25443#discussion_r2131431316
-------------
Changes:
- all: https://git.openjdk.org/jdk/pull/25443/files
- new: https://git.openjdk.org/jdk/pull/25443/files/30940aa9..b004f89f
Webrevs:
- full: https://webrevs.openjdk.org/?repo=jdk&pr=25443&range=09
- incr: https://webrevs.openjdk.org/?repo=jdk&pr=25443&range=08-09
Stats: 20 lines in 2 files changed: 10 ins; 3 del; 7 mod
Patch: https://git.openjdk.org/jdk/pull/25443.diff
Fetch: git fetch https://git.openjdk.org/jdk.git pull/25443/head:pull/25443
PR: https://git.openjdk.org/jdk/pull/25443
More information about the client-libs-dev
mailing list