home *** CD-ROM | disk | FTP | other *** search
- import java.lang.*;
-
- public class \Name\ extends java.lang.Number
- {
- public \Name\ ()
- {
- super ();
- }
- public int intValue()
- {
- int AResult = 0;
- //Add your code here
- return AResult;
- }
- public long longValue()
- {
- long AResult = 0;
- //Add your code here
- return AResult;
- }
- public float floatValue()
- {
- float AResult = 0;
- //Add your code here
- return AResult;
- }
- public double doubleValue()
- {
- double AResult = 0;
- //Add your code here
- return AResult;
- }
- }
-