107108109110111112113114115
frame.setContentPane(f); frame.setSize(500, 200); frame.setTitle(f.getClass().getName()); frame.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE); frame.setVisible(true); f.grabFocus(); } }
8586878889909192