view test/TestGUI.java @ 330:ddfc786811b9

*** empty log message ***
author kono
date Sun, 12 Oct 2008 04:23:57 +0900
parents 83790b8b8174
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);
	}
	
}