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

  1. import sun.tools.debug.*;
  2.  
  3. public class \Name\ extends sun.tools.debug.RemoteDebugger
  4.    {
  5.    public \Name\ (String AHost, String APassword, DebuggerCallback AClient, boolean AVerbose) throws Exception
  6.       {
  7.       super (AHost, APassword, AClient, AVerbose);
  8.       }
  9.    public \Name\ (String AArguments, DebuggerCallback AClient, boolean AVerbose) throws Exception
  10.       {
  11.       super (AArguments, AClient, AVerbose);
  12.       }
  13.    }
  14.