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 / net / www / protocol / systemresource / Handler.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  409 b   |  13 lines

  1. package sun.net.www.protocol.systemresource;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5. import java.net.URLConnection;
  6. import java.net.URLStreamHandler;
  7.  
  8. public class Handler extends URLStreamHandler {
  9.    public URLConnection openConnection(URL var1) throws IOException {
  10.       return new SystemResourceURLConnection(var1);
  11.    }
  12. }
  13.