Mercurial > hg > RemoteEditor > REPSessionManager
view test/TestGUI.java @ 320:83790b8b8174
*** empty log message ***
author | kono |
---|---|
date | Fri, 10 Oct 2008 14:10:15 +0900 |
parents | a187180e0106 |
children |
line wrap: on
line source
package test; import java.awt.Container; import javax.swing.JFrame; public class TestGUI { private static JFrame frame; private static ConnectionPanel cp; //private static ConnectionListener listener; public TestGUI() { } public static void main(String[] args){ frame = new JFrame("SessionManager"); frame.setBounds(100, 100, 400, 100); cp = new ConnectionPanel(); Container cont = frame.getContentPane(); cont.add(cp); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }