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.

InterfaceMembers.java 241B

1234567891011
  1. public interface InterfaceMembers {
  2. private class C {}
  3. private interface I {}
  4. private void m();
  5. private int x = 2;
  6. protected class Cp {}
  7. protected interface Ip {}
  8. protected void mp();
  9. protected int fp = 2;
  10. }