add a bunch of classes to classpath and flesh out a few existing ones

This commit is contained in:
Joel Dice
2007-07-21 11:50:26 -06:00
parent 108f8d7bc0
commit 48226f988c
33 changed files with 475 additions and 50 deletions

View File

@ -7,6 +7,26 @@ public final class Double {
this.value = value;
}
public byte byteValue() {
return (byte) value;
}
public short shortValue() {
return (short) value;
}
public int intValue() {
return (int) value;
}
public long longValue() {
return (long) value;
}
public float floatValue() {
return (float) value;
}
public double doubleValue() {
return value;
}