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.

Test024.java 205B

123456789101112131415
  1. // "@DeclareParents implementing more than one interface"
  2. import org.aspectj.lang.annotation.*;
  3. class A{
  4. }
  5. interface D{
  6. }
  7. interface E{
  8. }
  9. Aspect B{
  10. @DeclareParents("A")
  11. class C implements D, E{
  12. }
  13. }