CSLib
Class ClosableDialog.DialogCloser

java.lang.Object
  |
  +--java.awt.event.WindowAdapter
        |
        +--CSLib.ClosableDialog.DialogCloser

class ClosableDialog.DialogCloser
extends WindowAdapter

DialogCloser is an inner class that implements the
windowClosing listener for ClosableDialog. It does this
by extending the Java convenience wrapper WindowAdapter.

See Also: WindowAdapter

Method Summary
 voidwindowClosing(WindowEvent e)
          Cleans up the window, and terminates the program.

Methods inherited from class java.awt.event.WindowAdapter
windowOpened, windowClosed, windowIconified, windowDeiconified, windowActivated, windowDeactivated

Methods inherited from class java.lang.Object
getClass, hashCode, equals, toString, notify, notifyAll, wait, wait, wait

Method Detail

windowClosing

public void windowClosing(WindowEvent e)
Cleans up the window, and terminates the program.
Parameters:
e The specific WindowEvent that occurred.