finish java/lang/ref/* support; add wrapper classes for primitives

This commit is contained in:
Joel Dice
2007-07-19 21:18:25 -06:00
parent faf9b63798
commit de9213ce30
21 changed files with 218 additions and 28 deletions

View File

@ -0,0 +1,13 @@
package java.lang;
public final class Byte {
private final byte value;
public Byte(byte value) {
this.value = value;
}
public byte byteValue() {
return value;
}
}