-
Bug
-
Resolution: Not an Issue
-
P3
-
None
-
1.2.2
-
x86
-
windows_nt
Name: yyT116575 Date: 03/21/2001
java version "1.2.2"
Classic VM (build JDK-1.2.2-004, native threads, symcjit)
import javax.swing.*;
import java.awt.*;
public class Test extends JFrame {
public Test() {
JLabel aLabel = new JLabel("Type Here");
JTextField aField = new JTextField(20);
this.getContentPane().setLayout(new FlowLayout());
this.getContentPane().add(aLabel);
this.getContentPane().add(aField);
pack();
}
public static void main(String args[]) {
Test t = new Test();
t.setVisible(true);
}
}
Run the above testcase in a Korean WinNT.
In Korean windows NT/2000, typing text in JTextField "XXXX" <== 'X' indicates
Korean character.The cursor will appears preceeding the last character like the
following "XXX|X" <== '|' indicates the cursor.
(Review ID: 119206)
======================================================================