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.

GetMethods.java 655B

1234567891011121314151617181920212223242526272829303132
  1. package test3;
  2. @SuppressWarnings("unused")
  3. class SuperGetMethods {
  4. public int f0;
  5. protected double d0;
  6. String s0;
  7. private char c0;
  8. public void mpub0() {}
  9. protected void mpro0() {}
  10. void mpack0() {}
  11. private void mpri0() {}
  12. }
  13. @SuppressWarnings("unused")
  14. public class GetMethods extends SuperGetMethods {
  15. public GetMethods(int i) {}
  16. protected GetMethods(String i, int j) {}
  17. GetMethods() {}
  18. private GetMethods(int i, int j) {}
  19. public int f;
  20. protected double d;
  21. String s;
  22. private char c;
  23. public void mpub() {}
  24. protected void mpro() {}
  25. void mpack() {}
  26. private void mpri() {}
  27. }