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 / protocol / verbatim / Handler.class (.txt) next >
Encoding:
Java Class File  |  1997-07-08  |  499 b   |  13 lines

  1. package sun.net.www.protocol.verbatim;
  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 VerbatimConnection(var1);
  11.    }
  12. }
  13.