1  import javax.swing.JFrame;
  2  
  3  public class ItalianFlagViewer
  4  {
  5     public static void main(String[] args)
  6     {
  7        JFrame frame = new JFrame();
  8        frame.setSize(300, 400);
  9        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 10        ItalianFlagComponent component = new ItalianFlagComponent();
 11        frame.add(component);
 12        frame.setVisible(true);
 13     }
 14  }