1. package pf;
  2.  
  3. import javax.swing.JFrame;
  4.  
  5. public class ClassePrincipal
  6. {
  7. public static void main(String[] args)
  8. {
  9. Fat frame = new Fat();
  10.  
  11. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  12. frame.setSize(200,100);
  13. frame.setVisible(true);
  14. }
  15. }
  16.