1 package polyglot.ext.pao.runtime;2 3 /**4 * Boxed bytes.5 */6 public class Byte extends Integer {7 public Byte(byte value) {8 super(value);9 }10 11 public byte byteValue() {12 return (byte)value;13 }14 }