home *** CD-ROM | disk | FTP | other *** search
- package sun.net.www.content.image;
-
- import java.io.IOException;
- import java.net.ContentHandler;
- import java.net.URLConnection;
- import sun.awt.image.URLImageSource;
-
- public class jpeg extends ContentHandler {
- public Object getContent(URLConnection var1) throws IOException {
- return new URLImageSource(var1);
- }
- }
-