import javax.swing.*; public class Fenetre extends JFrame{ protected JFrame fenetre; public Fenetre() { this.fenetre = new JFrame("Creation du programme"); this.fenetre.setSize(400, 500); this.fenetre.setLocationRelativeTo(null); // centre la fenĂȘtre sur l'Ă©cran this.fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } protected void closeFrame() { dispose(); } }