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.

TestITD.aj 217B

12345678
  1. public aspect TestITD {
  2. declare parents : AbstractSuperAspectWithInterface+ implements TestInterface;
  3. public void TestInterface.interfaceMethod () {
  4. System.out.println("? void TestITD.interfaceMethod()");
  5. }
  6. }