/tutorial/external/Java/ASimple.java
Java | 17 lines | 9 code | 6 blank | 2 comment | 0 complexity | 22a47691fe4ef4d98156bc3be8b8dd36 MD5 | raw file
1/* ASimple.java */ 2 3class ASimple implements ISimple 4{ 5 6 public ASimple() 7 { 8 theInteger = 1; 9 } 10 11 public static int theStaticInteger; 12 13 public int theInteger; 14 15} 16 17/* End of file */