various classpath updates to help SWT build

This commit is contained in:
Joel Dice
2007-08-30 17:31:32 -06:00
parent 8b102783a6
commit a4b4f36c5b
14 changed files with 358 additions and 16 deletions

View File

@ -36,6 +36,10 @@ public final class Integer extends Number {
return toString(v, 10);
}
public static String toHexString(int v) {
return toString(v, 16);
}
public byte byteValue() {
return (byte) value;
}