clean up Field.get() and Field.set() implementations

This commit is contained in:
Joel Dice
2007-08-18 11:15:03 -06:00
parent 3625a02910
commit d169e4eadf
5 changed files with 296 additions and 170 deletions

View File

@ -63,8 +63,7 @@ public final class Double extends Number {
return 0.0;
}
public static long doubleToRawLongBits(double value) {
// todo
return 0;
}
public static native long doubleToRawLongBits(double value);
public static native double longBitsToDouble(long bits);
}