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.

ImportingStaticInnerInterfacesStars3_PR386.java 553B

1234567891011121314
  1. import org.aspectj.testing.*;
  2. import ClassWithStaticInnerInterfaces.*;
  3. public class ImportingStaticInnerInterfacesStars3_PR386 {
  4. public static void main(String[] args) {
  5. Tester.checkEqual(ClassWithStaticInnerInterfaces.class.getName(),
  6. "ClassWithStaticInnerInterfaces");
  7. Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.class.getName(),
  8. "ClassWithStaticInnerInterfaces$Inner1");
  9. Tester.checkEqual(I1.class.getName(), "I1");
  10. }
  11. }
  12. class I1 implements Inner1 {}