KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > pao > runtime > Short


1 package polyglot.ext.pao.runtime;
2
3 /**
4  * Boxed shorts.
5  */

6 public class Short extends Integer JavaDoc {
7     public Short(short value) {
8         super(value);
9     }
10
11     public short shortValue() {
12         return (short)value;
13     }
14 }
Popular Tags