home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / URLStreamHandler.pre < prev    next >
Text File  |  1995-10-08  |  300b  |  16 lines

  1. import java.net.*;
  2. import java.io.*;
  3.  
  4. public class \Name\ extends java.net.URLStreamHandler
  5.    {
  6.    public \Name\ ()
  7.       {
  8.       super ();
  9.       }
  10.    protected URLConnection openConnection(URL u) throws IOException 
  11.       {
  12.       //Add your code here
  13.       return null;
  14.       }
  15.    }
  16.