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.

Modifiers.java 352B

1234567891011121314
  1. public abstract class Modifiers {
  2. public private void foo1() { }
  3. public protected void foo2() { }
  4. protected private void foo4() { }
  5. abstract void foo6() { }
  6. abstract static void foo7();
  7. abstract synchronized void foo8();
  8. abstract private void foo9();
  9. abstract strictfp void foo10();
  10. abstract static class A { }
  11. }