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