On Thu, 5 Jun 2025 16:56:50 GMT, Jeremy Wood <d...@openjdk.org> wrote:

>> 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 two additional 
> commits since the last revision:
> 
>  - Merge remote-tracking branch 'origin/JDK-8354646' into JDK-8354646
>  - 8354646: make UnsupportedLookAndFeelException fail test
>    
>    This is in response to:
>    https://github.com/openjdk/jdk/pull/25443#discussion_r2128771448

src/java.desktop/share/classes/javax/swing/plaf/synth/SynthPasswordFieldUI.java 
line 116:

> 114:      */
> 115:     @Override
> 116:     protected void installKeyboardActions() {

Please update the copyright year

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/25443#discussion_r2131433167

Reply via email to