1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-26 05:57:44 +02:00
org.aspectj/tests/pureJava/ImportingStaticInnerInterfacesStars3_PR386.java
2002-12-16 18:51:06 +00:00

15 satır
553 B
Java

import org.aspectj.testing.*;
import ClassWithStaticInnerInterfaces.*;
public class ImportingStaticInnerInterfacesStars3_PR386 {
public static void main(String[] args) {
Tester.checkEqual(ClassWithStaticInnerInterfaces.class.getName(),
"ClassWithStaticInnerInterfaces");
Tester.checkEqual(ClassWithStaticInnerInterfaces.Inner1.class.getName(),
"ClassWithStaticInnerInterfaces$Inner1");
Tester.checkEqual(I1.class.getName(), "I1");
}
}
class I1 implements Inner1 {}