(String[] args)
| 12 | */ |
| 13 | public class FrameDemo2 { |
| 14 | public static void main(String[] args) { |
| 15 | // �������� |
| 16 | Frame f = new Frame(); |
| 17 | |
| 18 | // �������� |
| 19 | f.setTitle("����ر�"); |
| 20 | f.setSize(400, 200); |
| 21 | f.setLocation(500, 250); |
| 22 | |
| 23 | // ע���¼� |
| 24 | f.addWindowListener(new WindowAdapter() { |
| 25 | @Override |
| 26 | public void windowClosing(WindowEvent e) { |
| 27 | System.exit(0); |
| 28 | } |
| 29 | }); |
| 30 | |
| 31 | // ���ô���ɼ� |
| 32 | f.setVisible(true); |
| 33 | } |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected