package CHAP09;
import javax.swing.JFrame;

public class C10_01_MasterFrame extends JFrame {
	public C10_01_MasterFrame() {
		setTitle("컨테이너 JFrame");
        setSize(400, 300);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setLocationRelativeTo(null); // 화면 중앙에 표시
        setVisible(true);  
	}
	public static void main(String[] args) {
		C10_01_MasterFrame frame = new C10_01_MasterFrame();              
    }
}
