KickJava   Java API By Example, From Geeks To Geeks.

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


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

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