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