Java awt, swing .
setDefaultCloseOperation(), swing
7
public void windowOpened(WindowEvent e) { }
public void windowClosed(WindowEvent e) { }
public void windowActivated(WindowEvent e) { }
public void windowDeactivated(WindowEvent e) { }
public void windowIconified(WindowEvent e) { }
public void windowDeiconified(WindowEvent e) { }
public void windowClosing(WindowEvent e)
{}
,
.
, , , . , , , Frame (Java ).
,
Frame f = new Frame();
f.addWindowListener(new WindowListener ()
{
public void windowClosing(WindowEvent we)
{
System.exit(0);
}
});