home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / applet / AppletResourceLoader.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  459 b   |  20 lines

  1. package sun.applet;
  2.  
  3. import java.awt.Image;
  4. import java.net.URL;
  5. import sun.misc.Ref;
  6.  
  7. public class AppletResourceLoader {
  8.    public static Image getImage(URL var0) {
  9.       return AppletViewer.getCachedImage(var0);
  10.    }
  11.  
  12.    public static Ref getImageRef(URL var0) {
  13.       return AppletViewer.getCachedImageRef(var0);
  14.    }
  15.  
  16.    public static void flushImages() {
  17.       AppletViewer.flushImageCache();
  18.    }
  19. }
  20.