/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
- /* ASimple.java */
- class ASimple implements ISimple
- {
-
- public ASimple()
- {
- theInteger = 1;
- }
- public static int theStaticInteger;
- public int theInteger;
- }
- /* End of file */