Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Prasanta Sadhukhan
On Wed, 16 Dec 2020 20:35:04 GMT, Sergey Bylokhov wrote: > - The JTextComponent.setText() is overidden in the JPasswordField to make the > "text" property non-"bound" in the JPasswordField, same as in the > JTextComponent > - The new implementation of setText() clean an internal data storage >

Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Sergey Bylokhov
On Thu, 17 Dec 2020 17:19:19 GMT, Prasanta Sadhukhan wrote: >> - The JTextComponent.setText() is overidden in the JPasswordField to make >> the "text" property non-"bound" in the JPasswordField, same as in the >> JTextComponent >> - The new implementation of setText() clean an internal data s

Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Phil Race
On Wed, 16 Dec 2020 20:35:04 GMT, Sergey Bylokhov wrote: > - The JTextComponent.setText() is overidden in the JPasswordField to make the > "text" property non-"bound" in the JPasswordField, same as in the > JTextComponent > - The new implementation of setText() clean an internal data storage >

Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Prasanta Sadhukhan
On Wed, 16 Dec 2020 20:35:04 GMT, Sergey Bylokhov wrote: > - The JTextComponent.setText() is overidden in the JPasswordField to make the > "text" property non-"bound" in the JPasswordField, same as in the > JTextComponent > - The new implementation of setText() clean an internal data storage >

Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Victor Dyakov
On Thu, 17 Dec 2020 16:36:07 GMT, Alexander Zuev wrote: >> - The JTextComponent.setText() is overidden in the JPasswordField to make >> the "text" property non-"bound" in the JPasswordField, same as in the >> JTextComponent >> - The new implementation of setText() clean an internal data storag

Re: [jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-17 Thread Alexander Zuev
On Wed, 16 Dec 2020 20:35:04 GMT, Sergey Bylokhov wrote: > - The JTextComponent.setText() is overidden in the JPasswordField to make the > "text" property non-"bound" in the JPasswordField, same as in the > JTextComponent > - The new implementation of setText() clean an internal data storage >

[jdk16] RFR: 8258373: Update the text handling in the JPasswordField

2020-12-16 Thread Sergey Bylokhov
- The JTextComponent.setText() is overidden in the JPasswordField to make the "text" property non-"bound" in the JPasswordField, same as in the JTextComponent - The new implementation of setText() clean an internal data storage - Also some internal caches are cleaned as well - Comm