-
Bug
-
Resolution: Fixed
-
P4
-
1.1.6
-
None
-
b01
-
sparc
-
solaris_2.6
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2019807 | 1.2.0 | Eric Hawkes | P4 | Resolved | Fixed | 1.2fcs |
java.awt.TextField provides the ability to set an echo character.
This echo character is typically used in password entry fields to hide
the actual text typed in.
The method setEchoChar(char) is called to define the echo character.
The API does not prevent a programmer from calling setEchoChar multiple
times.
On win32 you can change the echo character as often as you like since
the win32 textfield native peer supports this.
On Solaris the Motif textfield provides no direct support for this, and an
Xt callback is installed to intercept and modify the text.
This callback is installed when the echo character is set.
On Solaris this has a bad effect since the previous callback is not
removed. We then have two callbacks each noting the characters being
typed and competing to enter their echo character.
This echo character is typically used in password entry fields to hide
the actual text typed in.
The method setEchoChar(char) is called to define the echo character.
The API does not prevent a programmer from calling setEchoChar multiple
times.
On win32 you can change the echo character as often as you like since
the win32 textfield native peer supports this.
On Solaris the Motif textfield provides no direct support for this, and an
Xt callback is installed to intercept and modify the text.
This callback is installed when the echo character is set.
On Solaris this has a bad effect since the previous callback is not
removed. We then have two callbacks each noting the characters being
typed and competing to enter their echo character.
- backported by
-
JDK-2019807 java TextField : cannot change setEchoChar twice on Motif
-
- Resolved
-
- relates to
-
JDK-4144615 Java Motif TextField peer in password Mode uses XmNuserData inappropriately
-
- Closed
-