home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / sun / net / www / content / image / gif.class (.txt) next >
Encoding:
Java Class File  |  1997-07-08  |  475 b   |  13 lines

  1. package sun.net.www.content.image;
  2.  
  3. import java.io.IOException;
  4. import java.net.ContentHandler;
  5. import java.net.URLConnection;
  6. import sun.awt.image.URLImageSource;
  7.  
  8. public class gif extends ContentHandler {
  9.    public Object getContent(URLConnection var1) throws IOException {
  10.       return new URLImageSource(var1);
  11.    }
  12. }
  13.