/tutorial/external/Java/ASimple.java

http://github.com/tybor/Liberty · Java · 17 lines · 9 code · 6 blank · 2 comment · 0 complexity · 22a47691fe4ef4d98156bc3be8b8dd36 MD5 · raw file

  1. /* ASimple.java */
  2. class ASimple implements ISimple
  3. {
  4. public ASimple()
  5. {
  6. theInteger = 1;
  7. }
  8. public static int theStaticInteger;
  9. public int theInteger;
  10. }
  11. /* End of file */