Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

StaticClassesInInterfaces.java 353B

12345678910111213
  1. import org.aspectj.testing.Tester;
  2. import anotherPackage.*;
  3. public class StaticClassesInInterfaces {
  4. public static void main(String[] args) {
  5. new StaticClassesInInterfaces().realMain(args);
  6. }
  7. public void realMain(String[] args) {
  8. AnotherPackageInterface.Inner inner = null;
  9. Tester.check(true, "compiled!");
  10. }
  11. }