Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. }