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

  1. import java.net.*;
  2. import java.io.*;
  3.  
  4. public class \Name\ extends java.net.ContentHandler
  5.    {
  6.    public \Name\ ()
  7.       {
  8.       super ();
  9.       }
  10.    public Object getContent(URLConnection urlc) throws IOException 
  11.       {
  12.       Object AResult = new Object ();
  13.       //Add your code here
  14.       return AResult;
  15.       }
  16.    }
  17.