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

  1. import java.lang.*;
  2.  
  3. public class \Name\ extends java.lang.Number
  4.    {
  5.    public \Name\ ()
  6.       {
  7.       super ();
  8.       }
  9.    public int intValue() 
  10.       {
  11.       int AResult = 0;
  12.       //Add your code here
  13.       return AResult;
  14.       }
  15.    public long longValue() 
  16.       {
  17.       long AResult = 0;
  18.       //Add your code here
  19.       return AResult;
  20.       }
  21.    public float floatValue() 
  22.       {
  23.       float AResult = 0;
  24.       //Add your code here
  25.       return AResult;
  26.       }
  27.    public double doubleValue() 
  28.       {
  29.       double AResult = 0;
  30.       //Add your code here
  31.       return AResult;
  32.       }
  33.    }
  34.