-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0
-
beta
-
x86
-
linux
-
Verified
On Redhat Linux 6.1 and Merlin 1.4.0beta-b43, typing in a JTextField
only echoes boxes.
The following test case reproduces the bug.
import javax.swing.*;
import java.awt.*;
import javax.swing.text.*;
public class caps extends JPanel {
public static void main(String args[]) {
JFrame jf=new JFrame();
jf.getContentPane().add(new JTextField());
jf.setSize(300,100);
jf.setVisible(true);
}
}
only echoes boxes.
The following test case reproduces the bug.
import javax.swing.*;
import java.awt.*;
import javax.swing.text.*;
public class caps extends JPanel {
public static void main(String args[]) {
JFrame jf=new JFrame();
jf.getContentPane().add(new JTextField());
jf.setSize(300,100);
jf.setVisible(true);
}
}
- duplicates
-
JDK-4407443 japanese wasn't displayed after entering in a text field
-
- Closed
-