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.

MyAspect.java 341B

12345678910111213
  1. package blah;
  2. public aspect MyAspect {
  3. pointcut callPointCut(): call(public * blah.MyClass+.*(..));
  4. Object around() : callPointCut() {
  5. System.out.println("start of around");
  6. Object result = proceed();
  7. System.out.println("end of around");
  8. return result;
  9. }
  10. }