home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
Number.pre
< prev
next >
Wrap
Text File
|
1995-10-08
|
635b
|
34 lines
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;
}
}