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

  1. import java.lang.*;
  2.  
  3. public class \Name\ extends java.lang.ClassLoader
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException 
  10.        {
  11.        //Add your code here
  12.        return null;
  13.        }
  14.    }
  15.