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.

Extender3.aj 181B

12345678910
  1. package test.extender;
  2. import test.*;
  3. public aspect Extender3 {
  4. declare parents: InterfaceProj1 extends InterfaceProj2;
  5. declare parents: test.ClassProj1 extends ClassProj2;
  6. }