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.

OverrideOptions.aj 304B

1234567891011121314151617181920212223242526272829303132
  1. package x;
  2. public aspect OverrideOptions
  3. {
  4. /**
  5. * Comment A
  6. */
  7. boolean around() : execution( public boolean A.a() ) && this( A )
  8. {
  9. return false;
  10. }
  11. /**
  12. * Comment B
  13. */
  14. int around() : execution(private int B.b(..)) && this(B){
  15. return 0;
  16. }
  17. }