-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.4.0
-
sparc
-
windows_nt
Name: apR10133 Date: 07/30/2002
When we dispose the window the last focused component gets different
types of focus lost event on different OS: the focus lost event is
temporary on Windows and permanent on Solaris. The expected result is
to get permanent focus lost event on both. See the testcase below.
------------------------- Test.java ---------------------------------
import java.awt.*;
import java.awt.event.*;
public class test {
static Frame fr;
public static void main(String[] args) {
fr = new Frame();
Button bt = new Button("Test");
fr.add(bt);
bt.addFocusListener(new FocusAdapter() {
public void focusLost(FocusEvent f) {
System.out.println("isTemporary: "+f.isTemporary());
}
});
fr.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
//fr.setVisible(false);
fr.dispose();
}
});
fr.pack();
fr.show();
}
}
---------------------------------------------------------------------
======================================================================
When we dispose the window the last focused component gets different
types of focus lost event on different OS: the focus lost event is
temporary on Windows and permanent on Solaris. The expected result is
to get permanent focus lost event on both. See the testcase below.
------------------------- Test.java ---------------------------------
import java.awt.*;
import java.awt.event.*;
public class test {
static Frame fr;
public static void main(String[] args) {
fr = new Frame();
Button bt = new Button("Test");
fr.add(bt);
bt.addFocusListener(new FocusAdapter() {
public void focusLost(FocusEvent f) {
System.out.println("isTemporary: "+f.isTemporary());
}
});
fr.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
//fr.setVisible(false);
fr.dispose();
}
});
fr.pack();
fr.show();
}
}
---------------------------------------------------------------------
======================================================================