You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Simple.java 239B

123456789101112131415161718192021
  1. // A simple class, interfered with by all sorts of advice !
  2. public class Simple {
  3. public void m1() {
  4. }
  5. public String m2() {
  6. return "a";
  7. }
  8. public static void main(String[] argv) {
  9. }
  10. private void mSecret() {
  11. }
  12. }