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.

Visible.java 273B

1234567891011121314151617
  1. package test3;
  2. @SuppressWarnings("unused")
  3. class Visible2 {
  4. public int pub;
  5. protected int pro;
  6. private int pri;
  7. int pack;
  8. }
  9. @SuppressWarnings("unused")
  10. public class Visible {
  11. public int pub;
  12. protected int pro;
  13. private int pri;
  14. int pack;
  15. }