package dk.itu.oop.testexamf2004; class TestExamF2004 extends Frame { public TestExamF2004() { addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { dispose(); System.exit(0); } }); } public static void main(String args[]) { System.out.println("Starting TestExamF2004..."); TestExamF2004 mainFrame = new TestExamF2004(); mainFrame.setSize(400, 400); mainFrame.setTitle("TestExamF2004"); mainFrame.setVisible(true); } }