package monPack;

import javax.swing.JFrame;
/**
 * Le contrôleur de l'armoire
 * @author Christian Mascart.
 *
 */
public class Fen01 extends JFrame
{
	PanneauArmoire monPanneauArmoire = new PanneauArmoire();
	public Fen01 ()
	{
		this.setTitle("Mon armoire");
		this.setSize(400, 150);
		this.setLocationRelativeTo(null);
		this.setVisible(true);
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.add (monPanneauArmoire);
	}
}
