package clock01;

import javax.swing.JFrame;

public class FenHorloge extends JFrame
{
	private Cadran monCadran = new Cadran();
	public FenHorloge()
	{
		this.setTitle("Quelle heure est-il ?");
		this.setSize(400, 150);
		this.setLocationRelativeTo(null);
		this.setVisible(true);
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		this.add (monCadran);
	}
}
