選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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