You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
292 B
Java

import java.awt.event.*;
/**
* This class is for enabling the closing of a window.
*
* @author Frank Klawonn
* Last change 07.01.2005
*/
public class MyFinishWindow extends WindowAdapter
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}