document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import javax.swing.JFrame;
  2.  
  3. public class FaceViewer
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         JFrame frame = new JFrame();
  8.         frame.setSize(150, 250);
  9.         frame.setTitle("Una faccia simpatica");
  10.         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  11.        
  12.         FaceComponent myFace = new FaceComponent();
  13.         frame.add(myFace);
  14.        
  15.         frame.setVisible(true);
  16.     }
  17. }
');