-
Bug
-
Resolution: Won't Fix
-
P5
-
None
-
1.1.1
-
sparc
-
solaris_2.5.1
Name: sgC58550 Date: 06/27/97
I think it makes sense that the default windowClosing()
should be exit(). That will save everyone from having to
create a special WindowAdapter just to close an application.
If someone wants a different action, they can overwrite that
method.
Please make the code for WindowAdapter as follows:
public abstract class WindowAdapter implements WindowListener {
public void windowOpened(WindowEvent e) {}
public void windowClosing(WindowEvent e) {System.exit(0);}
public void windowClosed(WindowEvent e) {}
public void windowIconified(WindowEvent e) {}
public void windowDeiconified(WindowEvent e) {}
public void windowActivated(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
}
THank you
company - PRIOR , email - ###@###.###
======================================================================