view test/TestGUI.java @ 324:e235998427a6 before-merge-fix

try to fix merger
author kono
date Sat, 11 Oct 2008 16:31:03 +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);
	}
	
}