-
Bug
-
Resolution: Fixed
-
P4
-
1.0, unknown, 1.0.2, 1.1.4
-
b01
-
generic, sparc
-
generic, solaris_2.4, solaris_2.5.1, solaris_9
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2017286 | 1.2.0 | Philip Race | P4 | Resolved | Fixed | 1.2fcs |
Name: mf23781 Date: 10/07/97
If the setEchoChar() method is called on a text field then the
following strange behavior is observed
1. setText() method does not work unless the TextField is empty.
2. Delete key only works if you are at the end of the text string.
3. cannot insert text unless cursor is at the end of the text string.
Example Code Follows:
import java.awt.*;
import java.awt.event.*;
public class TextFieldTest extends Frame implements ActionListener
{
TextField t;
int count = 0;
public void actionPerformed(ActionEvent e)
{
t.setText ("After Peer " + count++);
}
public TextFieldTest()
{
super();
setLayout(new BorderLayout());
t = new TextField(20);
t.setEchoChar ('*');
t.setText ("Before Peer");
add("Center", t);
t.addKeyListener(new KeyAdapter()
{ public void keyPressed(KeyEvent e)
{ System.out.println(e); }
});
Button b1 = new Button ("Set");
b1.addActionListener(this);
Button b2 = new Button ("Clear");
b2.addActionListener(new ActionListener()
{ public void actionPerformed(ActionEvent e)
{ t.setText (""); }
});
Panel p = new Panel ();
p.add (b1);
p.add (b2);
add ("South", p);
}
public static void main(String[] argv)
{
TextFieldTest f = new TextFieldTest();
f.pack();
f.show();
}
}
======================================================================
- backported by
-
JDK-2017286 TextField behaves incorrectly after setEchoChar called
-
- Resolved
-
- duplicates
-
JDK-4034481 text fields should allow type-over of selected text
-
- Closed
-
-
JDK-4013156 setText on TextField with setEchoCharacter in DialogWindow display unmasked.
-
- Closed
-
-
JDK-4092651 TextField.setEchoChar functions improperly
-
- Closed
-
-
JDK-1267177 AWT should provide typeover mode in the TextField class
-
- Closed
-
- relates to
-
JDK-4144615 Java Motif TextField peer in password Mode uses XmNuserData inappropriately
-
- Closed
-
(1 relates to)