Esempio n. 1
0
 public void run() {
   try {
     for (; ; ) {
       fApplet.showStatus("loading icons...");
       sleep(50);
     }
   } catch (InterruptedException e) {
     return;
   }
 }
 public static void main(String s[]) {
   if (s.length > 0) j2kfilename = s[0];
   else j2kfilename = "girl";
   System.out.println(j2kfilename);
   isApplet = false;
   JFrame f = new JFrame("ImageViewer");
   f.addWindowListener(
       new WindowAdapter() {
         public void windowClosing(WindowEvent e) {
           System.exit(0);
         }
       });
   JApplet applet = new ImageViewer();
   f.getContentPane().add("Center", applet);
   applet.init();
   f.pack();
   f.setSize(new Dimension(550, 550));
   f.show();
 }
Esempio n. 3
0
 public void paint(Graphics g) {
   super.paint(g);
 }