-
Bug
-
Resolution: Cannot Reproduce
-
P2
-
None
-
1.4.0
-
x86
-
windows_2000
When the component is added to the container and if the container is displayed, default component is not gaining the Focus in win32 for the internal build which is located at:
/net/jano/export/disk03/awt/echawkes/beta2/build/win32/win32.tar
This bug exists only in Windows 2K professional edition and Windows 98.
This bug does exists for build 76.
java version used:
java -version
java version "1.4.0-internal"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-internal-echawkes_
16_aug_2001_18_14)
Java HotSpot(TM) Client VM (build 1.4.0-beta2-b76, mixed mode)
How to reproduce this bug:
use the following sample program to reproduce this bug.
When the frame is displayed, the button is not gaining Focus, the message 'Button Gained focus' is not displayed. But when the button is clicked, 'Button Gained Focus' message is displayed.
//program test1.java
import java.awt.*;
import java.awt.event.*;
public class test1 {
Frame testFrame1;
Button button3;
List list1;
Panel rootPanel1;
test1()
{
testFrame1 = new Frame ("Test Frame");
testFrame1.setLayout(new FlowLayout());
testFrame1.setBackground(Color.blue);
rootPanel1 = new Panel();
rootPanel1.setBackground(Color.yellow);
button3 = new Button("Button");
button3.addFocusListener(new FocusListener ()
{
public void focusGained(FocusEvent fe) {
System.out.println("Button Gained focus");
}
public void focusLost(FocusEvent fe) {
System.out.println("Button Lost focus");
}
}
);
list1 = new List(4);
list1.add("Item 1");
list1.add("Item 2");
list1.add("Item 3");
list1.add("Item 4");
list1.addFocusListener(new FocusListener ()
{
public void focusGained(FocusEvent fe) {
System.out.println("List Gained focus");
}
public void focusLost(FocusEvent fe) {
System.out.println("List Lost focus");
}
}
);
rootPanel1.add(button3);
rootPanel1.add(list1);
testFrame1.add(rootPanel1);
testFrame1.setSize(400,400);
testFrame1.setVisible(true);
}
public static void main(String args[])
{
test1 t = new test1();
}
}
//end of program
/net/jano/export/disk03/awt/echawkes/beta2/build/win32/win32.tar
This bug exists only in Windows 2K professional edition and Windows 98.
This bug does exists for build 76.
java version used:
java -version
java version "1.4.0-internal"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-internal-echawkes_
16_aug_2001_18_14)
Java HotSpot(TM) Client VM (build 1.4.0-beta2-b76, mixed mode)
How to reproduce this bug:
use the following sample program to reproduce this bug.
When the frame is displayed, the button is not gaining Focus, the message 'Button Gained focus' is not displayed. But when the button is clicked, 'Button Gained Focus' message is displayed.
//program test1.java
import java.awt.*;
import java.awt.event.*;
public class test1 {
Frame testFrame1;
Button button3;
List list1;
Panel rootPanel1;
test1()
{
testFrame1 = new Frame ("Test Frame");
testFrame1.setLayout(new FlowLayout());
testFrame1.setBackground(Color.blue);
rootPanel1 = new Panel();
rootPanel1.setBackground(Color.yellow);
button3 = new Button("Button");
button3.addFocusListener(new FocusListener ()
{
public void focusGained(FocusEvent fe) {
System.out.println("Button Gained focus");
}
public void focusLost(FocusEvent fe) {
System.out.println("Button Lost focus");
}
}
);
list1 = new List(4);
list1.add("Item 1");
list1.add("Item 2");
list1.add("Item 3");
list1.add("Item 4");
list1.addFocusListener(new FocusListener ()
{
public void focusGained(FocusEvent fe) {
System.out.println("List Gained focus");
}
public void focusLost(FocusEvent fe) {
System.out.println("List Lost focus");
}
}
);
rootPanel1.add(button3);
rootPanel1.add(list1);
testFrame1.add(rootPanel1);
testFrame1.setSize(400,400);
testFrame1.setVisible(true);
}
public static void main(String args[])
{
test1 t = new test1();
}
}
//end of program